MODIFY LINE - source

Syntax

... [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 ...].


Extras:

1. ... LINE VALUE FROM wa

2. ... FIELD VALUE dobj1 [FROM wa1] dobj2 [FROM wa2] ...

3. ... LINE FORMAT ext_format_options

4. ... FIELD FORMAT dobj1 ext_format_options1 ...

Effect

Specification of source fields for MODIFY LINE. Additions modify the list line once this has been overwritten with the content of the sy-lisel system field.

Addition 1

... LINE VALUE FROM wa

Effect

The LINE VALUE addition overwrites the whole list line with the content of wa.

Addition 2

... FIELD VALUE dobj1 [FROM wa1] dobj2 [FROM wa2] ...

Effect

The FIELD VALUE addition overwrites the output areas of individual dobj1 dobj2 ... data objects that are output in the list line with the current content of these objects, or - if it is specified - the content of the wa1 wa2 ... data objects. For wa or wa1 wa2 ..., character-type data objects (before Release 6.10 flache) are expected, which are truncated if they are too long. For data objects that are too short, the line or the output areas are filled from the right with blank characters. The FIELD VALUE specification overrides the LINE VALUE specification.

With dobj1 dobj2 ... data objects with the same name that are output several times in a line, only the first one is processed. If there is no dobj1 dobj2 ...

Addition 3

... LINE FORMAT ext_format_options

Addition 4

... FIELD FORMAT dobj1 ext_format_options1 ...

Effect

For ext_format_options, one or more additions of the FORMAT statement can be specified. The LINE FORMAT addition formats the whole list line accordingly; FIELD FORMAT formats only the output areas of the dobj1 dobj2 ... data objects that are output in the list line. The FIELD FORMAT specification overrides the LINE FORMAT specification.

With dobj1 dobj2 ... data objects with the same name that are output several times in a line, only the first one is processed. If there is no dobj1 dobj2 ... data object at all, the specification is ignored.