2013 Jul 27 7:23 PM
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.
2013 Jul 29 1:24 AM
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
2013 Jul 29 4:05 AM
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.