Google News
logo
SAP ABAP - Interview Questions
How can we insert a line into ABAP internal tables?
With the help of the INSERT statement, it is possible to insert a line or lines into internal tables of ABAP. For inserting a line, you need to put the values which we wish to insert in a work area, then later you can use the INSERT statement for inserting the values in the work area then into the internal table.
 
The general format for a line insertion into an internal table is:
INSERT <work area> INTO TABLE <internal table>.
OR
INSERT <work area> INTO <internal table> INDEX <index>.
Advertisement