Just create your own status gui without that button and set your status gui in INITIALIZATION.
Regards.
You will need to set your own status.
In the AT SELECTION-SCREEN OUTPUT event, set the status.
AT SELECTION-SCREEN OUTPUT . set pf-status 'MAIN'.
Double click on the MAIN in the statement, and create the status. Do not put the value for Green Arrow Back, but make sure to allow for some way of leaving this program. Save and activate.
Regards,
Rich Heilman
hi,
Use this code..
REPORT Z_TEST999 .
DATA itab TYPE TABLE OF sy-ucomm.
PARAMETERS test(10) TYPE c.
AT SELECTION-SCREEN OUTPUT.
APPEND: 'E' TO itab.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = sy-pfkey
TABLES
p_exclude = itab.
Regards,
Sailaja.
Add a comment