InterviewSolution
Saved Bookmarks
| 1. |
How can we insert a line into ABAP internal tables? |
|
Answer» 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>. |
|