MODIFY itab 
Reference 
Syntax
MODIFY { { {TABLE itab}|{itab INDEX idx} 
           FROM wa 
           [TRANSPORTING comp1 comp2 ...] 
 
         [{ASSIGNING <fs>}|{REFERENCE INTO dref}] } 
       | {itab FROM wa TRANSPORTING comp1 comp2 ... WHERE log_exp} }. 
Effect
Changes rows in internal tables. 
Additions
- 
TABLE itab 
Specifies
a row to be changed by agreeing with the key values of the wa work area. 
 
- 
itab INDEX idx 
Specifies a row to be changed by specifying the idx table index. 
 
- 
FROM wa 
Specifies the new content in a wa work area. 
 
- 
TRANSPORTING comp1 comp2 ... 
Specifies the components comp1, comp2, ... to be changed. 
 
- 
ASSIGNING <fs> [CASTING] 
Assigns a changed single row to a field symbol <fs>; casting can be executed. 
 
- 
REFERENCE INTO dref 
Assigns the reference to a changed single rowe of a dref reference variable. 
 
- 
WHERE log_exp 
Specifies the rows to be changed using a log_exp condition.