Sunday, 13 May 2012

How to make changes in lines of an internal table? | SAP-ABAP

=> The modify statement is used to modify a single line of any internal table. The table key can be used to   modify a single line. If table contains duplicate entries and a non-unique key then the first entry will be changed.
 modify table <itab> from <wa> [transporting <f1> <f2>...].
The work area <wa> is used not only for finding the line which is to be changed but it also contains! the new contents.

No comments: