ABAP Keyword Documentation → ABAP - Quick Reference
MODIFY LINE - Quick reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
MODIFY { {LINE line [OF {PAGE page}|{CURRENT PAGE}] [INDEX idx]}
| {CURRENT LINE} }
[LINE VALUE FROM wa]
[FIELD VALUE dobj1 [FROM wa1] dobj2 [FROM wa2] ...]
[LINE FORMAT ext_format_options]
[FIELD FORMAT dobj1 ext_format_options1
dobj2 ext_format_options2 ...].
Effect
Overwrites a list line in the list buffer with the content of sy-lisel and performs additional modifications in the additions.
Additions
-
LINE line
Specifies the line to be changed inline. -
OF {PAGE page}|{CURRENT PAGE}
Specifies the page inpageor the top page displayed in the list in which a list event was raised. -
INDEX idx
Specifies the list index inidx. If not specified, the list level is used on which a list event was raised. -
CURRENT LINE
Specifies the line in which a list event was raised. -
LINE VALUE FROM wa
Overwrites the whole list line with the content ofwa. -
FIELD VALUE dobj1 [FROM wa1] dobj2 [FROM wa2] ...
Overwrites the output areas of the data objectsdobj1,dobj2, ... displayed in the list line with the current content of these objects or with the content of the data objectswa1,wa2, ... -
LINE FORMAT ext_format_options
Formats the whole list line using the additions of the statementFORMAT. -
FIELD FORMAT dobj1 ext_format_options1 dobj2 ext_format_options2 ...
Formats the output areas of the data objectsdobj1,dobj2, ... displayed in the list line using the additions of the statementFORMAT.