Skip to Content
0
Former Member
Nov 30, 2006 at 02:41 AM

Internal Tables

27 Views

Hi experts,

What is the fastest way to move one i_tab1 to another i_tab2? Assuming two tables of similar structure. Pls explain.

a) append lines of table1 to table2.

b) loop at table1.

Move: table1-field1 to table2-field1,

table1-field2 to table2-field2.

Append table2.

Endloop.

c) table2[] = table1[].

d) loop at table1.

Move-corresponding table1 to table2.

Endloop.

e) move table1 to table2.

Regards,

Marc