Sunday, 13 May 2012

How is an internal table assigned? | SAP-ABAP

move statement is used to assign the internal table header line or work area. Internal tables can be used as operands in a move statement.
move <itab2> to <itab1>.
or
<itab1> to <itab2>.
These statements assign the header line of table <itab2> to table <itabl>. The original contents of the <itabl> are overwritten. After the table name, two brackets ([]) can be placed for addressing the body of an internal table.

No comments: