Skip to content

ABAP Keyword Documentation →  ABAP − Reference →  SAP GUI User Dialogs →  General Dynpros →  ABAP Statements for Dynpros →  GET CURSOR - Dynpro 

GET CURSOR - field_properties

Quick Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


... [VALUE val] [LENGTH len] [OFFSET off] [LINE lin] [AREA area]. 

Extras

1. ... VALUE val

2. ... LENGTH len
3. ... OFFSET off

4. ... LINE lin
5. ... AREA area

Effect

Using these additions, further information about the cursor position can be imported during PAI processing if the addition FIELD is specified for the statement GET CURSOR.

Addition 1

... VALUE val

Effect

The addition VALUE assigns the formatted content of the screen element on which the cursor is positioned to the data object val as a character string. val expects a character-like variable.

Addition 2

... LENGTH len

Effect

The addition LENGTH assigns the length of the screen element on which the cursor is positioned to the data object len. len expects a variable of the type i.

Addition 3

... OFFSET off

Effect

The addition OFFSET assigns the position of the cursor within the screen element on which the cursor is positioned to the data object off. off expects a variable of the type i.

Addition 4

... LINE lin

Effect

If the screen element on which the cursor is positioned is within a table control or a step loop, the addition LINE assigns the number of the row of the table control or the group of the step loop to the data object lin. If not, lin is set to 0. lin expects a variable of the type i.

Addition 5

... AREA area

Effect

If the screen element on which the cursor is positioned is within a table control, the addition AREA assigns the name of the table control to the data object area. If not, area is initialized. area expects a character-like variable.