Appending internal tables

Question:
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.
Answer:
Try:
Append lines of <itab2> to <itab1>
_________________
Granny Abap
Answer:
Thank-you sir (madam).

More Articles:

values in a row?
Comparing a space in a table field not working for ' '?
Best way to output/format a list report?
BAPI?
Select-options?
2 Alv Grids on 1 Screen?