‎2014 Jan 23 1:02 PM
‎2014 Jan 23 1:34 PM
HI Burak,
This will place the cursor in selection screen
SELECT-OPTIONS : S_FY FOR lt.
AT SELECTION-SCREEN ON S_FY.
IF S_FY-LOW IS INITIAL.
MESSAGE 'EMPTY' TYPE 'E'.
ENDIF.
Regards,
Sivaganesh
‎2014 Jan 23 1:41 PM
Hi Burak,
Use SET CURSOR in the At Selection Screen Output event.Try this
PARAMETERS p_name TYPE char10.
SELECT-OPTIONS s_dte FOR sy-datum.
AT SELECTION-SCREEN OUTPUT.
SET CURSOR FIELD 'S_DTE-LOW'.
Regards,
Jeffin
‎2014 Jan 24 6:04 AM
Hi,
Follow the above coding.
Remember to place the set cursor coding before the error message you need to display while coding.
Regards
‎2014 Jan 24 6:12 AM
SET CURSOR will work if it is executed in PBO (Module pool) / AT SELECTION-SCREEN OUTPUT (Report transaction).
In PBO, you can write it to set the cursor whichever field you want.
Regards.