Does anybody know how modify standard sap toolbar via GuiXT?
I need to hide/disable such buttons as "page up", "page down" in transaction MB1C.
Thanks in advance
|
|
This website is not affiliated with, sponsored by, or approved by SAP AG.
GUIXT + standard toolbarModerators: thx4allthefish, Snowy
2 posts
• Page 1 of 1
GUIXT + standard toolbarHi
Does anybody know how modify standard sap toolbar via GuiXT? I need to hide/disable such buttons as "page up", "page down" in transaction MB1C. Thanks in advance
Re: GUIXT + standard toolbarHello,
You cannot "hide" standard button like save, back, ... You can only disable it, but only if there are associated to a shortcut. Examples : disable save button (shortcut F11) : del M[/11] //=> icon will become gray, you cannot click on it, and nothing append if you push F11 key. disable back button (shortcut F3) : del M[/3] disable Exit button (shortcut SHIFT + F3): del M[/15] But you cannot do it if there is no shortcut associated, or shortcut with a letter, like CTRL + F for the search button. You can only intercept the click on the button with the command ON Examble to disable search button on the sap welcome screen : // disable search button on "=XXSEAR" fcode="/0" //=> icon stay clickable, but when user click, nothing append. you can inform user that this button is disabled : on "=XXSEAR" fcode="/0" process="not_allowed.txt" and in an input script file named "not_allowed.txt" return "E: Sorry, this function is disabled" -statusline http://quelquepart.biz
2 posts
• Page 1 of 1
Return to Third Party Products Who is onlineUsers browsing this forum: No registered users and 1 guest |
|