Appending internal tables
Hi
itab1[] = itab2[] moves all data from itab2 to itab1, and overwrites the data in itab1 in the process. Is there a similar way to do this, but appending itab2 data to itab1, without a loop:
loop at itab2.
move-corresponding itab2 to itab1.
append itab1.
endloop.
Thks.
Try:
Append lines of <itab2> to <itab1>
_________________
Granny Abap
Thank-you sir (madam).