‎2006 Dec 18 5:31 AM
How to change the GUI status dynamicaly. i have created 2 buttons in the Application Toolbar. on pressing Enter in the screen one button shud be disabled the other shud be active.
‎2006 Dec 18 6:01 AM
Hello,
Use, <b>set pf-status <menu> excluding <okcode of the screen element>.</b>
Regards,
Shehryar Dahar
‎2006 Dec 18 5:33 AM
Hi ,
In the PAI or at selection-screen , use the command SET PF STATUS EXCLUDING .
Regards
Arun
‎2006 Dec 18 5:33 AM
you can remove the button from application toolbar using
set pf-status 'zmenu' excluding 'okcode of the button'.
‎2006 Dec 18 5:43 AM
‎2006 Dec 18 5:45 AM
‎2006 Dec 18 5:56 AM
hi you can do that by populating table
DATA: itab TYPE TABLE OF sy-ucomm.
APPEND 'DELE' TO itab.
APPEND 'PICK' TO itab.
SET PF-STATUS 'STA3' EXCLUDING itab.
‎2006 Dec 18 5:45 AM
Hi,
u can't give two okcodes at one time.At one time it will take only one.
Regards,
nagaraj
‎2006 Dec 18 6:01 AM
Hello,
Use, <b>set pf-status <menu> excluding <okcode of the screen element>.</b>
Regards,
Shehryar Dahar