‎2006 May 11 11:31 AM
Hi All,
In the selection screen by default Execution button is come . I want to disbale the execution button in the selection screen . Please help me.
thanks
Goutam
‎2006 May 11 11:34 AM
DATA itab TYPE TABLE OF sy-ucomm.
PARAMETERS test(10) TYPE c.
AT SELECTION-SCREEN OUTPUT.
APPEND 'ONLI' TO itab.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = sy-pfkey
TABLES
p_exclude = itab.
‎2006 May 11 11:34 AM
DATA itab TYPE TABLE OF sy-ucomm.
PARAMETERS test(10) TYPE c.
AT SELECTION-SCREEN OUTPUT.
APPEND 'ONLI' TO itab.
CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
EXPORTING
p_status = sy-pfkey
TABLES
p_exclude = itab.
‎2006 May 11 11:34 AM
‎2006 May 11 11:35 AM
Hi,
Why do u want to disable the button?
If u want no action to take place even if anyone triggers F8 u just catch that SY-Ucomm and code
when SY-UCoMM <> the value of F8.
U can do this by way..
cheers,
Simha.
‎2006 May 11 11:37 AM
‎2006 May 11 11:42 AM
Hi,
REPORT ZTEST message-id zz .
initialization.
set pf-status 'AAA'. "double click on AAA and
"enable BACK,CANC,EXIT only.
parameters: p_matnr like mara-matnr.check it.
Regards
vijay