‎2007 Jun 15 11:30 AM
how do i move work area(wa_it) data to an internal table(it) after looping through the internal table(it) into the work area(it_wa).
‎2007 Jun 15 11:36 AM
sample code will be like this
loop at it into it_wa.
do something.
modify it from it_wa transporting fields.
endloop.
Regards
Peram
‎2007 Jun 15 11:35 AM
hi,
try like this,
loop at itab into wa_itab.
append itab from wa_itab. [or]
use
move itab from wa_itab.
append itab.
endloop.
if useful reward some points.
with regards,
suresh.
‎2007 Jun 15 11:35 AM
Hello,
Append wa to internal table.
if u want to modify then use modify internal table from wa.
Regards,
Neelambari
‎2007 Jun 15 11:36 AM
‎2007 Jun 15 11:36 AM
sample code will be like this
loop at it into it_wa.
do something.
modify it from it_wa transporting fields.
endloop.
Regards
Peram
‎2007 Jun 15 11:36 AM
Hi,
Check out the following Eg...
Loop at it into wa_it.
wa_it-status = 'X'.
<b>Modify it from wa_it transporting status.</b>
Endloop.
‎2007 Jun 15 11:37 AM
‎2007 Jun 15 11:40 AM
Hi Willard ,
use the append statements or move statemnts ..
reward points
regards
reena