[Selection Screeen에서 저장버튼 Disable 처리]
PARAMETERS : p_para type char10.
AT SELECTION-SCREEN OUTPUT.
DATA : repid TYPE sy-repid.
DATA : it TYPE TABLE OF sy-ucomm.
clear it.
repid = sy-repid.
APPEND 'GET' TO it. "To disable Select Variant button
APPEND 'SPOS' TO it. "To disable SAVE button
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = '%_00'
p_program = sy-repid
TABLES
p_exclude = it.
좋은 팁이네요... 감사합니다