Hello,
I have a structure as a exporting parameters from a function module which is a deep structure.
It is having some internal tables as a part of it.
I want to get the data from 2 of the internal tables.
E.g.
call function 'ABC'
Exporting = wa_xyz.
I first assign that structure to a field symbol.
Assign wa_xyz to <fs_xyz>.
Then I use,
READ table <fs_xyz>-table1 into lc_tab1.
Is there any other alternative for this ? Or more easy way?
Rgds
Anand