What is the command to be used to transfer the data from one internal table to another internal.

Showing Answers 1 - 10 of 10 Answers

sravanthi

  • Sep 13th, 2006
 

use move-corresponding command.

  Was this answer useful?  Yes

Manjula devi

  • Aug 21st, 2007
 

Take there is two internal tables itab1 and itab2.

1.move-corresponding itab1 to itab2.
2.move itab1 to itab2.
3.itab2 = itab1

  Was this answer useful?  Yes

sathgun

  • Jul 21st, 2011
 

Let ITAB1 AND ITAB2 be two Internal tables. If i want transfer data from ITAB1 to ITAB2....
........
ITAB2 = ITAB1.
(OR)
APPEND LINES OF ITAB1 TO ITAB2 TO

  Was this answer useful?  Yes

Gokul

  • Sep 4th, 2011
 

Append is the keyword which is used to transfer the data from workarea to internal table.

  Was this answer useful?  Yes

srinivasulu

  • Mar 10th, 2013
 

"MOVE" if both are identical structures means use MOVE statement ,it ll blindly move from source to destination....
if unidentical structure means use MOVE CORRESPONDING...SAP will not encourage to use move corresponding bcz it leads to field by field comparison b/w the fields of source to destination so performance ADVISABLE TO GO BY FIELD BY FIELD ASSIGNMENT FOR THE COMMON FIELDS

  Was this answer useful?  Yes

GOVIND

  • Jun 20th, 2013
 

Append lines keyword is use to transfer the data from one internal table to another internal table.

  Was this answer useful?  Yes

syed jawed

  • Feb 25th, 2014
 

ITAB1 = ITAB2.

  Was this answer useful?  Yes

Dinesh

  • Feb 3rd, 2015
 

We can use APPEND for copying data from one ITAB to another ITAB by keeping in a loop. But it is not efficient. Instead we can use as follows:
ITAB1[]=ITAB2[].

  Was this answer useful?  Yes

sagar

  • Sep 7th, 2015
 

move itab1 to itab2

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions