ABAP Addition 1 ... NO STANDARD PAGE HEADING> 2 ... LINE-SIZE width> 3 ... LINE-COUNT page_lines$[(footer_lines)$]>
What does it do? These additions affect the basic list of the program.
ABAP Addition
What does it do? This addition suppresses the output of the standard page header> (standard header and column headers) in the basic list of the program and sets the system field sy-wtitl> to the value N>. This setting can be overwritten when the list is created using the additions NO-TITLE$|WITH-TITLE> and NO-HEADING$|WITH-HEADING> of the statement NEW-PAGE>>.
ABAP Addition
What does it do? 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 specified directly as a positive number. The maximum line width is 1023. If 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 GUI window. For the standard width, the content of sy-linsz> is 0. The specification of LINE-SIZE > overwrites the value passed to the identically named addition LINE-SIZE> of the statement SUBMIT>> and can be overwritten when the list is created using the identically named addition LINE-SIZE > of the statement NEW-PAGE>>.
Latest notes: The current maximum line width is stored in the constant SLIST_MAX_LINESIZE> of the type pool > SLIST>>. A type SLIST_MAX_LISTLINE> of type c> with length SLIST_MAX_LINESIZE> is also defined there. The constant SLIST_MAX_LINESIZE> cannot be used in the statement REPORT> but can be used in the statement NEW-PAGE>>. ABAP_HINT_END
ABAP Addition
What does it do? This addition specifies the page length for the basic list of the program as page_lines> lines and fills the system field sy-linct> with this value. If LINE-COUNT> is not specified and for page_lines> less than 0 or greater than 60000, the page length is set internally to 60000. This setting overwrites the value passed to the identically named addition LINE-SIZE> of the statement SUBMIT>> and can be overwritten when the list is created by the identically named addition LINE-COUNT> of the statement NEW-PAGE>>. The optional specification of a number for footer_lines> is used to reserve a corresponding number of lines for the page footer>, which can be described in the event block END-OF-PAGE>. page_lines> and footer_lines> must be specified directly as positive numbers and no sign can be specified for footer_lines> here.
Latest notes:
The default value should be used for screen lists because page changes specified using LINE-COUNT> are usually not adjusted to the window size.
The default value should also be used for spool lists, so that the page size can be selected on a printer-specific basis. A spool list should be created in such a way that it provides meaningful results for each page size.
Specifying a fixed line number only makes sense for form-like lists with a fixed page layout. However, a check should always be made on whether such forms can be created by other means. ABAP_HINT_END
ABAP_EXAMPLE_VX The page length of the basic list is set to 65 lines, of which eight lines are reserved for the page footer. The line width is 132 characters. REPORT myreport LINE-COUNT 65(8) LINE-SIZE 132.> ABAP_EXAMPLE_END