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

Program query

Former Member
0 Likes
275

Dear experts,

I have 2 internal table , 1 inernal table have 4 fields and 10 records in that and the other hv 3 fields and 10 records in each field in that . My task is to transfer the 4th field and records of that of 1st table to 2nd field. Need some help on that..

Table 1 Table 2

fields- F1 F2 F3 F4 I1 I2 I3 I4

A1 B1 C1 D1 A1 P1 Q1

A2 B2 C2 D2 A2 P2 Q2

....................... ...................

A10 B10 C10 D10 A10 P10 Q10

Here i want records of f4 in i4. Is insert syntax is the way or any other way we can insert the data from table 1 to table 2.

Thanks And regards

Arun

Moderator Message: Basic question. Please do a little more research and/or take an ABAP course.

Edited by: kishan P on Mar 1, 2011 2:13 PM

1 REPLY 1
Read only

former_member125931
Active Participant
0 Likes
242

HI,

Loop at Internal table1 into worka area1.

modify Internaltable2 from work area1 transporting internaltable2-2nd filed = work area1-4th field.

endloop.

Thanks and regards,

Sree.