Application Development 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: 

Disable Application toolbar - urgent

Former Member
0 Kudos

Hi,

I want to disable some buttons on application toolbar. Can somebody help - its urgent

Thanks,

Sheel

3 REPLIES 3

Former Member
0 Kudos

I solved this issue......

Thanks,

Sheel

0 Kudos

can u plz explain me how u solved ?

0 Kudos

Hi,

For disabling the buttons in application toolbar or menu -

data : it_fcode type table of sy-ucomm.

In PBO, WRITE FOLLOWING STATEMENTS -

append 'SAVE' TO IT_FCODE.

APPEND 'DISPLAY' TO IT_FCODE.

SET PF-STATUS 'MENU' EXCLUDING IT_FCODE. " Here it will disable Save & Display buttons in the GUi - Menu.

Award me points if it helps.......

Thanks,

Sheel