Application Development 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: 

append

Former Member
0 Kudos

hi gurus

i have two internal table tab1 and itab2

i am using

append lines of itab1 to itab2.

it is appending all the field of itab1 to itab2 but not the last to fields

please help me with the same as soon as possible.

the structure of the two are not same and i cant change it also.

please help me as soon as possible

thanks alot in advance.

anuj

4 REPLIES 4

Former Member
0 Kudos

Hi,

Both the internal tables must have same structure.

Former Member
0 Kudos

hi,

use move corresponding to work ara and then append work area to itab

regards,

chandu

Former Member
0 Kudos

Hi,

You can use append when both internal tables are equal structures.

Use MOVE statement.

Regards,

Chandu

Former Member
0 Kudos

So I guess the problem is the tables have not the same structure.

I'm not sure, but I think you must, inside a loop on your itab1, fill a work area that has the same structure of itab2 and append it to this table.