ABAP Keyword Documentation → ABAP - Short Reference
SET CURSOR - Short Reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
SET CURSOR { { FIELD field [LINE line]
[[DISPLAY|MEMORY] OFFSET off] }
| { LINE line
[[DISPLAY|MEMORY] OFFSET off] }
| { col lin } }.
Effect
Sets the cursor position on screens and lists.
Additions
-
FIELD field [LINE line]
Sets the cursor on the screen element or the fieldfield
displayed in a list, whereline
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 inline
. -
[DISPLAY|MEMORY] OFFSET off
Defines the offsetoff
on which the cursor is set in the specified element. In lists,DISPLAY
andMEMORY
distinguish between the screen position and the position in the list buffer. -
col lin
Sets the cursor to the column of the screen specified incol
and the line of the screen specified inlin
.