SAP SET CURSOR - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for SET_CURSOR

SET CURSOR

ABAP Reference
ABAP Code Snippet


ABAP Syntax SET CURSOR { { FIELD field [LINE line]

[[DISPLAY|MEMORY] OFFSET off] }
| { LINE line
[[DISPLAY|MEMORY] OFFSET off] }
| { col lin } }.
ABAP Code Snippet

What does it do? Sets the cursor position on screens and lists.

ABAP Addition FIELD field [LINE line]
Sets the cursor on the screen element or the field field displayed in a list, where line specifies the number of a line in a table control for a step loop or a list.
LINE line
Sets the cursor on the line of a table control, a step loop, or a list, specified in line.
[DISPLAY|MEMORY] OFFSET off
Defines the offset off on which the cursor is set in the specified element. In lists, DISPLAY and MEMORY distinguish between the screen position and the position in the list buffer.
col lin
Sets the cursor to the column of the screen specified in col and the line of the screen specified in lin.

Return to menu