ABAP Keyword Documentation → ABAP - Reference → Processing Internal Data → Internal Tables → Processing Statements for Internal Tables → APPEND
APPEND - result
Other versions: 7.31 | 7.40 | 7.54
Syntax
... { ASSIGNING <fs> [CASTING] }
| { REFERENCE INTO dref }... .
Effect
You can use these additions only to append single rows. If the append was successful, you use the addition
ASSIGNING
to assign the appended row to a field symbol <fs>
;
you use addition REFERENCE INTO
to set a reference to the appended row in a reference variable.
Syntax and function are similar to the specification of the output behavior in the statement
READ TABLE
and the same restrictions apply as far as modification of key fields of the
primary and
secondary table key are concerned.
Example
Refer to the INITIAL LINE
addition.