‎2008 Jul 23 6:29 AM
Hi all,
We want to display / Hide or Unable to Click on Button of Menu bar on run time i.e. User select particular radio button on screen and menu bar button changes accordingly.
Any suggestions welcome.
Regards,
‎2008 Jul 23 1:52 PM
Hi Friend,
Take the function code of the buttons which you do not want to display. Pass into an internal table, code it like:
SET PF-STATUS <'PFXX'> EXCLUDING <INT TABLE NAME>
Please check the documentation for int table's type.
Regards
Krishnendu
‎2008 Jul 23 2:00 PM
SET PF-STATUS 'DATA' EXCLUDING INT_TAB.
ITAB-FCODE = 'fcode'.
append itab .
‎2008 Jul 28 4:07 AM