Hi Everyone,
I was wondering how can you access the local variable of a subroutine using ABAP Stack.
E.g.
REPORT A.
...
PERFORM B.
....
FORM B
data : var2
.....
CALL FUNCTION C
ENDFORM
FUNCTION C.
<access var2 here>
ENDFUNCTION.
I only know that you can usually access variables via (PROGNAME)variable and assign it to an <FS>.
Thanks,
Patrick