2007 May 03 9:50 AM
Hi,
Do you have a code on how to transfer the data from one column of ITAB1 to another column of table ITAB2 . These two table has different structure.
Thanks in Advance!!!
2007 May 03 9:52 AM
Hi,
Write like this.
Loop at itab1.
itab2-col1 = itab1-col3 <give the actual column names)
Append itab2 or Modify Itab2.
clear itab2.
endloop.
Reward points if useful
Regards
Anji
Hi,
Do you have a code on how to transfer the data from one column of ITAB1 to another column of table ITAB2 . These two table has different structure.
Thanks in Advance!!!
2007 May 03 9:52 AM
Hi,
Write like this.
Loop at itab1.
itab2-col1 = itab1-col3 <give the actual column names)
Append itab2 or Modify Itab2.
clear itab2.
endloop.
Reward points if useful
Regards
Anji
2007 May 03 9:55 AM
Thanks Anji, but I am looking for other options aside from using a loop.
2007 May 03 9:54 AM
Hi Jim
Look at the code,
loop at itab1.
move itab1-col1 to itab2-coll1.
move itab1-col2 to itab2-coll2.
append itab2.
endloop.
Regards,
Kasi S
2007 Jun 19 8:18 PM
2007 Jul 17 5:12 PM
Hello,
Can you share on how you solved this topic?
Regards,
Anna-Liza Sanchez