Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Disable Execute button in Selection Screen Report

Former Member
0 Likes
1,167

How to do that ?

4 REPLIES 4
Read only

Former Member
0 Likes
580

Hi,

In initialization.

INITIALIZATION.
set  pf-status 'STAT'.

"don't assign execution fcode

regards

vijay

Read only

hymavathi_oruganti
Active Contributor
0 Likes
580

u set a pf status in at slection screen, then u can find the standard execute and all buttons.

Read only

0 Likes
580

set new pf status in which disable execute button....

Read only

abdul_hakim
Active Contributor
0 Likes
580

Hi Stephan,

Use the below code..

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.

Thanks,

Abdul