Hi all,
Could any one help me in copying the data from an internal table of one program to an internal table of another program.
I have used the following method but it is giving dump during execution.
name = '(SAPLMR1M)YDRSEG[]'.
ASSIGN (name) TO <ydrseg>.
IF sy-subrc = 0.
ydrseg[] = <ydrseg>. " am gettting dump in this part.
Thanks in advance.
Mohan