SAP MOVE-CORRESPONDING - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for MOVE-CORRESPONDING

MOVE-CORRESPONDING

ABAP Reference
ABAP Code Snippet


ABAP Syntax MOVE-CORRESPONDING [EXACT] { struc1 TO struc2
[EXPANDING NESTED TABLES] }
| { itab1 TO itab2 [EXPANDING NESTED TABLES]
[KEEPING TARGET LINES] }.
ABAP Code Snippet

What does it do? Assigns components of a structure struc1 or an internal table itab1 to components with the same name in structure struc2 or internal table itab2.

The variants for internal tables are not yet released and cannot be used.

ABAP Addition EXACT
No values are lost in this assignment. EXPANDING NESTED TABLES
Planned: Tabular components to be replaced. KEEPING TARGET LINES
Planned: Target tables are not to be overwritten and data is added to them instead.

Return to menu