I have following piece of code. ( Field-symbol <data> which is a workarea of <it_disptab> ) now I want to transfer
the data of i_wbs of selectively fields to <data>, how do i do that? In the following code, system stores garbage value
if the datatype of field of <data> is curr. The structure of <data> and i_wbs is not same.
Data : begin of i_wbs occurs 0,
Pspnr like prps-pspnr,
Posid like prps-posid,
Wtges like coep-wtges,
End of i_wbs.
LOOP AT i_wbs.
MOVE i_wbs TO <data>.
APPEND <data> TO <it_disptab>.
ENDLOOP.
Best Regards
Sangom
...
Software/Hardware used:
ASKED:
May 19, 2005 11:27 PM
UPDATED:
May 20, 2005 3:29 AM