Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

work area

Former Member
0 Likes
727

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).

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
707

sample code will be like this

loop at it into it_wa.

do something.

modify it from it_wa transporting fields.

endloop.

Regards

Peram

7 REPLIES 7
Read only

Former Member
0 Likes
707

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.

Read only

Former Member
0 Likes
707

Hello,

Append wa to internal table.

if u want to modify then use modify internal table from wa.

Regards,

Neelambari

Read only

Former Member
0 Likes
707

append wa_it to it.

Read only

Former Member
0 Likes
708

sample code will be like this

loop at it into it_wa.

do something.

modify it from it_wa transporting fields.

endloop.

Regards

Peram

Read only

former_member491305
Active Contributor
0 Likes
707

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.

Read only

Former Member
0 Likes
707

Hello,

Use <b>append wa_it to it.</b>

Vasanth

Read only

Former Member
0 Likes
707

Hi Willard ,

use the append statements or move statemnts ..

reward points

regards

reena