2008 May 14 3:45 PM
Hello,
I want disable a button that is Status Gui of a program standard. It´s possible???.
Thank´s
Fernando
2008 May 14 3:51 PM
Hello,
Yes, it's possible do the following:
DATA fcode TYPE TABLE OF sy-ucomm.
...
MODULE status_0100 OUTPUT.
APPEND 'CHANGE' TO fcode.
APPEND 'SAVE' TO fcode.
SET PF-STATUS 'STATUS_0100' EXCLUDING fcode.
ENDMODULE.
Regards,
2008 May 14 4:37 PM