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

Status Gui

Former Member
0 Likes
395

Hello,

I want disable a button that is Status Gui of a program standard. It´s possible???.

Thank´s

Fernando

2 REPLIES 2
Read only

Former Member
0 Likes
377

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,

Read only

0 Likes
377

Ok, thanks

I'm going to do this.

Regards