ABAP Keyword Documentation → ABAP - Short Reference
MODIFY LINE - Short 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 inpage
or the uppermost page displayed in the list in which a list event occurred. -
INDEX idx
Specifies the list index inidx
. If this is not specified, the list level is used where a list event occurred. -
CURRENT LINE
Specifies the line where a list event occurred. -
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 with the additions of theFORMAT
statement. -
FIELD FORMAT dobj1 ext_format_options1 dobj2 ext_format_options2 ...
Formats the output areas of the data objectsdobj1
,dobj2
, ... output in the list line with the additions of theFORMAT
statement.