ABAP Keyword Documentation → ABAP - Reference → User Dialogs → Selection Screens → Selection Screens - Overview
Selection Screens, Changing the Default GUI Status
The example shows how to change the GUI status of a selection screen.
Other versions: 7.31 | 7.40 | 7.54
Source Code
REPORT demo_sel_screen_status .
DATA itab TYPE TABLE OF sy-ucomm.
PARAMETERS test(10) TYPE c.
AT SELECTION-SCREEN OUTPUT.
APPEND: 'PRIN' TO itab,
'SPOS' TO itab.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = sy-pfkey
TABLES
p_exclude = itab.
Description
In this example program, the two functions Print and Save as Variant are disabled. You can find the function codes of the default GUI status in the field GUI Status which you can display by choosing System → Status.