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

Making Menu Item Active/Inactive

Former Member
0 Likes
700

Hi,

Can anybody guide me how to make menu item inactive after selecting it.In my module pool screen i have a menu item Action with the following 3 items.

1.Create 2.Change and 3.Display.My requirement  is to make the menu item inactive which is selected and it should be displayed. Hope you understood.

Hi,

Can anybody guide me how to make menu item inactive after selecting it.In my module pool screen i have a menu item Action with the following 3 items.

1.Create 2.Change and 3.Display.My requirement  is to make the menu item inactive which is selected and it should be displayed. Hope you understood.

2 REPLIES 2
Read only

arindam_m
Active Contributor
0 Likes
558

Hi,

Please check on the menu painter option. T-code SE41. Should help you.

http://help.sap.com/saphelp_nw04/helpdata/en/83/7a18cbde6e11d195460000e82de14a/frameset.htm

Cheers,
Arindam

Read only

Former Member
0 Likes
558

Hi Mr. Reddy,

You will have to create an Internal Table

DATA: itab TYPE TABLE OF sy-ucomm.

Then in your PAI of the menu click suppose you clicked create

APPEND 'CREATE' TO itab.

In the PBO where you are calling your status

SET PF-STATUS 'ZMY_STATUS' EXCLUDING itab.