SAP DESCRIBE LIST PAGE PROPERTIES ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• LINE-SIZE DESCRIBE LIST PAGE
• LINE-COUNT DESCRIBE LIST PAGE
• LINES DESCRIBE LIST PAGE
• FIRST-LINE DESCRIBE LIST PAGE
• TOP-LINES DESCRIBE LIST PAGE
• TITLE-LINES DESCRIBE LIST PAGE
• HEAD-LINES DESCRIBE LIST PAGE
• END-LINES DESCRIBE LIST PAGE

DESCRIBE LIST, page_properties
Short Reference

ABAP_SYNTAX
... $[LINE-SIZE width$]
$[LINE-COUNT page_lines$]
$[LINES lines$]
$[FIRST-LINE first_line$]
$[TOP-LINES top_lines$]
$[TITLE-LINES title_lines$]
$[HEAD-LINES header_lines$]
$[END-LINES footer_lines$] ...

ABAP Addition
1 ... LINE-SIZE width
2 ... LINE-COUNT page_lines
3 ... LINES lines
4 ... FIRST-LINE first_line
5 ... TOP-LINES top_lines
6 ... TITLE-LINES title_lines
7 ... HEAD-LINES header_lines
8 ... END-LINES footer_lines

What does it do?
Determines the properties of pages using DESCRIBE LIST. The data type i is expected for all target fields.

ABAP Addition

What does it do?
Inserts the line length of the page defined using the addition LINE-SIZE of the statement at the start of the program or of NEW-PAGE after width.

ABAP Addition

What does it do?
Inserts the page length defined using the addition LINE-COUNT of the statement at the start of the program or of NEW-PAGE after page_lines.

ABAP Addition

What does it do?
Inserts the number of lines output on the page including the page header and page footer after lines.

ABAP Addition

What does it do?
Inserts the line number of the first line of the page, with respect to the entire list, after first_line. The page headers and page footers are respected in the line count, but not the blank lines inserted automatically between the list pages.

ABAP Addition

What does it do?
Inserts the number of lines of the page header of the page after top_lines. The standard page header and the lines output by the event TOP-OF-PAGE are respected in the count.

ABAP Addition

What does it do?
Inserts the number of lines of the standard title of the standard page header of the page after title_lines.

ABAP Addition

What does it do?
Inserts the number of lines of the column headers of the standard page header of the page after header_lines.

ABAP Addition

What does it do?
Inserts the number of lines reserved by the addition LINE-COUNT of the statement at the start of the program for the page footer after footer_lines.

Return to menu