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:
img58 

Technorati Tags: ,

How to set focus to a field in me21n

In EXIT_SAPMM06E_12 I'm doing some checks and after user confirmation I would like to return focus to a field in transaction me21n. How to solve the problem ?

Post new comment