What is append in ABAP?
What is append in ABAP? The APPEND statement adds a single line/row to an existing internal table. APPEND inserts the data after the last line of the internal table. The work area can be either a header line or any other line with the same structure as an internal table. What is difference between append and insert statements in SAP ABAP? Append is statement which is used to add a record at bottom of a internal table from work area . Insert is a statement which is used to insert a record at a specified position of an internal table...