Tuesday, 30 April 2013

Appending One Internal table to another internal table of same structure without replacing the existing data

First internal table is having some data , second internal table is also having some data.
We have to add data from itab2 to itab1 without removing itab1 existing data.
Below is the command to append itab2 to itab1.

  APPEND LINES OF itab2 to itab1 .

Note : itab1 and itab2 should be of same structure.

No comments:

Post a Comment