... [NO STANDARD PAGE HEADING]
[LINE-SIZE width]
[LINE-COUNT page_lines[(footer_lines)]] ... .
1. ... NO STANDARD PAGE HEADING
2. ... LINE-SIZE width
3. ... LINE-COUNT page_lines[(footer_lines)]
These additions influence the basic list of the program.
... NO STANDARD PAGE HEADING
This addition suppresses the output of the standard
page header (standard header and column headers) on the basic list of the program and sets the system
field sy-wtitl to the value "N". You can overwrite this
setting during list creation with the additions NO-TITLE|WITH-TITLE
and NO-HEADING|WITH-HEADING to the NEW-PAGE statement.
... LINE-SIZE width
This addition specifies the line width of the basic list and details list of the program to width characters, and sets the system field sy-linsz to this value. The line width determines the number of characters in the line buffer as well as the number of columns in the list displayed. The value width must be a positive numeric literal. The maximum line width is 1,023 characters.
When the LINE-SIZE is not specified, the line width of the basic list is set to a standard width based on the window width of the current
Dynpro, but is at least as wide as a standard
size SAP window. For the standard width, the contents of sy-linsz
is 0. The LINE-SIZE overwrites the value of the like-named
LINE-SIZE addition to the statement
SUBMIT and can be overwritten during list creation with the like-named
LINE-SIZE addition to the statement NEW-PAGE.
The current maximum line width is stored in the constants slist_max_linesize of the
type group SLIST. Also defined there
is a type slist_max_listline of type c with length slist_max_linesize.
... LINE-COUNT page_lines[(footer_lines)]
This addition specifies the page length for the basic list of the program to page_lines lines and fills the system field sy-linct with this value. If the LINE-COUNT is not specifed, and if page_lines are less than or equal to 0 or greater than 60,000, then the page length is set internally to 60,000. This setting overwrites the passed value of the like-named LINE-SIZE addition to the statement SUBMIT and can be overwritten during list creation with the like-named LINE-COUNT addition to the statement NEW-PAGE.
If you optionally specify a number for footer_lines, a corresponding number of lines are reserved for the page footer, which can be described in the event block END-OF-PAGE.
You must specify page_lines and footer_lines as numeric literals.
The page length of the basic list is set to 65 lines, eight of which are reserved for the page footer. The line width is 132 characters.
REPORT z_myreport LINE-COUNT 65(8) LINE-SIZE 132.