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

Append Internal table?

Former Member
0 Likes
753

Hi all,

I am fetching some data from a MARA table to internal table int_temp.

again i am fetching some more records from MARA...here i want to append these records to the same internal table int_temp.

how to do this...

SAchin

8 REPLIES 8
Read only

Former Member
0 Likes
731

hi this can be done by the modify command..

check the different situations for the modify commands..

http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/modify.htm

regards,

venkat.

Read only

Former Member
0 Likes
731

Add those fields what you want to append in ITAB decleration..and also in select query and in the loop.

Reward if it helpful.

Dara.

Read only

Former Member
0 Likes
731

Add those fields what you want to append in ITAB decleration..and also in select query and in the loop.

Reward if it helpful.

Dara.

Read only

Former Member
0 Likes
731

Hi,

U can use append the work area or the header line to the internal table.

it will append the records into ur internal table.

Read only

Former Member
0 Likes
731

use append lines to itab.

Read only

prasanth_kasturi
Active Contributor
0 Likes
731

hi,

you can take two interrnal tables of same structure

and use append lines statement

regards

prasanth

Read only

Former Member
0 Likes
731

Hi,

Use like :




append lines of int_temp1 to int_temp2.


Pls reward points if useful.

Regards,

Renjith Michael.

Read only

Former Member
0 Likes
731

trylike this,

SELECT * FROM mara

APPENDING CORRESPONDING FIELDS OF TABLE it_mara.