How to set cursor field on selection-screen in ABAP/4
You can set cursor field on selection-screen by applying statement ’SET CURSOR FIELD ...’ in event INITIALIZATION.
Example
PARAMETERS: P_FLD1(20) TYPE C,
P_FLD2 TYPE I.
INITIALIZATION.
SET CURSOR FIELD ’P_FLD2’.
The output is:
- thitima's blog
- 8408 reads
How to set focus to a field in me21n
Post new comment