SAP SCROLL - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for SCROLL

SCROLL

ABAP Reference
ABAP Code Snippet


ABAP Syntax SCROLL LIST [ { TO COLUMN col }

| { {LEFT|RIGHT} [BY n PLACES] } ]
[ { TO { {FIRST PAGE}
| {LAST PAGE}
| {PAGE pag} }
[LINE lin] }
| { {FORWARD|BACKWARD} [n PAGES] } ]
[ • idx].
ABAP Code Snippet

What does it do? Moves the display area of a list stored in the list buffer.

ABAP Addition TO COLUMN col
Moves the area horizontally to column col.
{LEFT|RIGHT} [BY n PLACES]
Moves the display area left or right either by the line width or by n characters.
TO { {FIRST PAGE} | {LAST PAGE} | {PAGE pag} [LINE lin] }
Moves the display area vertically to the first or last page, or the page specified in pag; you can specify the first line lin.
{FORWARD|BACKWARD} [n PAGES]
Moves the display area up or down, either by one page or by pag pages.
• idx
Specifies the list index in idx. If no entries are made in this field, the system uses the list level on which a list event has taken place.

Return to menu