What does the percent sign mean in a parameter to the abap function?
I have this piece of code which is difficult for me to understand.
call function 'com_invoke'
destination pv_wrkdest
exporting
%instid = pv_instance
%method = 'FieldCountGet'
importing
%return = lc_return
fieldcount = pv_fieldcount
exceptions
communication_failure = 1
system_failure = 2
invalid_instance_id = 3
others = 4.
What does the percent sign mean in the% instid,% and% return parameters?
+2
source to share