2013 Jul 10 11:45 PM
Hi all!
I have method with an export parameter, which is ANY typed. I want to pass this parameter to a generic variable.
So the code is:
my_class->( importing ev_formal_param = lv_actual_param ).
The quesiton is what type the ev_formal_param and the lv_actual_param should be declared?
Thank you for your help!
Best regards:
Attila
2013 Jul 11 6:28 AM
It can be done this way too.
data:lv type ref to data,
field-symbols:<fs> type any.
ev_formal_param type ref to data.
my_class->( importing ev_formal_param = lv ).
assign lv->* to <fs>.