you can access the parameters like this,
DATA : A(10) type c value 'B'.
DATA : B(10) type c value 'dynamic'.
Field-symbols : <FS> type any.
Assign (A) to <FS>.
if <FS> is assigned.
Write : / <FS>. " Here <FS> will have the
Address reference of B.
Endif.
Reward if helps..
Thanks,
Krishnakumar
Add a comment