在选择屏幕上画PUSHBUTTON的时候,通常不需要左上角的执行按钮,所以需要隐藏掉,两种方式可以实现,都需要在INITIALZATION或者AT SELECTION-SCREEN OUTPUT事件中完成。
方式1:
at selection-screen output.
perform insert_into_excl(rsdbrunt) using 'ONLI'.
方式2:
DATA :it_exclude TYPE TABLE OF sy-ucomm.
INITIALIZATION.
APPEND 'ONLI' TO it_exclude.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = sy-pfkey
TABLES
p_exclude = it_exclude.
效果:
以上。