SAP DESCRIBE LIST - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for DESCRIBE_LIST

DESCRIBE LIST

ABAP Reference
ABAP Code Snippet


ABAP Syntax DESCRIBE LIST { {NUMBER OF {LINES|PAGES} n}

| {LINE linno PAGE page}
| {PAGE pagno [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]} }
[ • idx].
ABAP Code Snippet

What does it do? Specifies the properties of a list in the list buffer.

ABAP Addition NUMBER OF {LINES|PAGES} n
Returns the number of lines or pages in n.
LINE linno PAGE page
Returns the page of the line specified in linno in page.
PAGE pagno
Returns properties of the page specified in pagno:

LINE-SIZE width - Line length

LINE-COUNT page_lines - Page length

LINES lines - Number of lines

FIRST-LINE first_line - Line number of the first line

TOP-LINES top_lines - Number of header lines

TITLE-LINES title_lines - Number of title lines

HEAD-LINES header_lines - Number of column header lines

END-LINES footer_lines - Number of footer lines
• idx
Specification of the list index in idx. Without the specification of the index, either the basic list or the list in which a list event occurred is evaluated.

Return to menu