What is the difference between move and move corresponding in abap?

Showing Answers 1 - 9 of 9 Answers

ravi143

  • May 30th, 2007
 

Hi!!
Move-corresponding is a statement used for  transferring data from internal table to screen fields it should be provided under PB

Regards,
Kuber Naidu.

  Was this answer useful?  Yes

neena watkar

  • Nov 2nd, 2007
 

with xi we can provide single  point of integration to all application systems

  Was this answer useful?  Yes

--------MOVE--------Moves the contents of field f to field g. Field f remains unchanged. This statement is equivalent to:g = f. ExampleDATA: NUMBER TYPE I, FIVE TYPE I. MOVE 5 TO FIVE. MOVE FIVE TO NUMBER. The fields NUMBER and FIVE now both have the value 5. ------------------------------------------------------------------------------------MOVE-CORRESPONDING ------------------Basic form MOVE-CORRESPONDING struc1 TO struc2.Effect struc1 and struc2 must be structures. Searches for all names of subfields that occur both in struc1 and struc2. Generates for all relevant field pairs which correspond to the subfields ni, statements of the form MOVE struc1-ni TO struc2-ni. The other fields remain unchanged.

  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