While debugging abap code I found an interessting code construct.
method_name(: Parameter1 ), Parameter2 ).
As far as I can tell this one calls the method twice. The first time with the first parameter and the second time with the second. Unfortunately I have no idea how this construct is called and so I can't find any documentation in the SAP docu or with google.
I can tell that this works but is this an official construct? Does it work with more than two parameters? (E.g. four times)
Best regards, Dirk
method( value = 'X': name = 'var1' ), name 'var2').. It is just shorthand as explained in the link provided in @vwegert's answer. - Gert Beukema