Hide menu bar and toolbar

Hi people,
Someone knows a way to hide (or deactivate) menus and toolbars in standard transactions? It's possible without coding?
Tks,
Douglas

Hi Douglas,
You can hide a menu bar via a transaction and screen variant. The T.code is SHD0. No code required, just a development class/package.
  I'm not sure if you have hide tool bars.
SAP has some good documentation on transaction and screen variants. Below is the link.
http://help.sap.com/saphelp_47x200/helpdata/en/67/232037ebf1cc09e10000009b38f889/frameset.htm
Mike Vondran
Mike Vondran

Similar Messages

  • Hiding menu bar and toolbar in WinGUI used in transaction iView

    dear friends
    can anybody help me to hide the Menubar and Toolbar displayed in WinGUI used Transaction iView
    please help me
    thanx in Advance
    kantha

    hi
    if i use SSF choice,
    the SAPGUI should be configured with authorized user
    Actually the SAP logon things i am configured in portal itself.
    so using SSF before displaying the transaction, the user again need to enter the authorization.
    so it is not meeting my criteria
    please reply me if u got any other idea
    thanx

  • Hide menu bar and tool bar of the browser when running forms 10g

    hi all
    i want to hide browser's tool bar,menu bar when i run the form
    thanks

    maddyd2k wrote:
    Hi
    your utility is very helpful
    one thing i want ask.... i am using oracle developer suite in that where i can find web server and where i can place the FormStart folder
    Help me in this
    Thanks
    Edited by: maddyd2k on Mar 31, 2011 3:46 AMHi
    first, yes this utility is very useful but it is not mine ;) all credits goes to Peter de Vaal the author !
    for your requirements, take a look at Peter's documentation on how to set up the utility for developer suite (the webserver is the oc4j standalone)
    you must define a virtual path to your FormStart folder and html files :
    Step 2. Define a virtual path
    The FormsStart directory must be made accesible through the http protocol. The way to do this is to define a virtual path for your web server.
    For Oracle Developer Suite the webserver is the stand-alone oc4j. You define a virtual path in file orion-web.xml. This file can be found in:
    <DS_home>\j2ee\DevSuite\application-deployments\default\defaultWebApp
    Add the following line before the </orion-web-app> tag:
         <virtual-directory
                virtual-path="/forms/fs"
                real-path="C:\oracle/FormsStart/html" />
    For Oracle Application Server the webserver is Apache. You can specify virtual paths in httpd.conf or in one of its include files (oracle_apache.conf, forms.conf). We suggest to specify it in forms.conf (in <AS_home>\forms\server, For 9i and 9.0.4 it is: forms90\server\forms90.conf).
    Use Enterprise Manager Website to edit this file (Click on HTTP Server, then on Advanced server Properties, then on forms.conf or forms90.conf).
    Add the following line, below the list of other AliasMatch tags:
    Windows:
    # Virtual path for FormsStart Utility
    AliasMatch ^/forms/fs/(..*) "C:\oracle\FormsStart/html/$1"
    Unix:
    # Virtual path for FormsStart Utility
    AliasMatch ^/forms/fs/(..*) "/app/oracle/FormsStart/html/$1"JeanYves

  • Hide Menu bar and disable dock.

    s there a way to Hide the Menu bar?
    (there must be a way because it gets hidden when watching a movie in full screen in vlc or any other app)
    and is there a way to disable (not hide) the dock?
    thanks.

    Is there a way to Hide the Menu bar?
    The menubar is a consistent interface artifact in Mac OS X and Macs in general which never changes its location, unlike Windows which attach menubars to specific applications. If your purpose is a kiosk style web browser, there is Saft for Safari. Other web browsers have their own built-in kiosk mode for the Mac.
    If you want a menubar to be hidden for other applications, contact the software vendor who makes the software you want the menubar hidden on. Most applications depend on its existence.
    The Dock while put on the right hand side of the screen is less likely to get activated by accident, and will activate more slowly than when on the bottom of the screen if you make it unhidden and magnification off, and then automatically hide it with command-option-D keystroke.

  • Hide menu bar and title bar in a JFrame

    Hi!
    I'm using a JFrame for a kind of viewer application. I start it as normal, so the JFrame has a JMenuBar with menus and the title bar with the application name.
    So far, all right, but at some point I would like to press a JButton to make the viewer application full screen, that is, hiding the window title bar and the JMenuBar.
    Any idea?
    PD: I've tried the method myJMenuBar.setVisible(false) in order to hide the menu bar, but it seems it doesn't work because I'm using the Look&Feel Metal with border decorations.

    something like this seems to work OK.
    basically, create a JPanel that is the contentPane of the frame, then for full screen
    create a JWindow, add the panel to the window, show the window
    (alt-F4 to close)
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      public void buildGUI()
        JMenu menu = new JMenu("File");
        JMenuItem menuOpen = new JMenuItem("Open");
        JMenuItem menuSave = new JMenuItem("Save");
        JMenuBar menuBar = new JMenuBar();
        menu.add(menuOpen);
        menu.add(menuSave);
        menuBar.add(menu);
        JButton btn = new JButton("Full Screen");
        final JPanel p = new JPanel(new GridBagLayout());
        p.add(btn,new GridBagConstraints());
        final JFrame f = new JFrame();
        f.getContentPane().add(p);
        f.setJMenuBar(menuBar);
        f.setSize(200,100);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
        btn.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            JWindow w = new JWindow(f);
            w.add(p);
            f.setSize(0,0);
            w.setSize(Toolkit.getDefaultToolkit().getScreenSize());
            w.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • Remove padding on menu bar and toolbar

    Hi,
    Is there a way of removing the extra margin at the bottom of JMenus and JToolBars?
    I've highlighted the margins in red so you can see them better:
    http://img410.imageshack.us/my.php?image=paddingapp4rm.png
    Also, it it possible to remove the drag area on the toolbar and the square borders around the images in the toolbar?
    Here's the code that creates the menus and toolbars:
       public SnakeLadder()
          super("Snakes & Ladders");
          setLayout(new FlowLayout());
          JMenuBar menuBar = new JMenuBar();
          setJMenuBar(menuBar);
          menuBar.add(fileMenu());
          menuBar.add(gameMenu());
          menuBar.add(helpMenu());
          JToolBar toolBar = new JToolBar();
          add(toolBar,BorderLayout.PAGE_START);
          toolBar.setPreferredSize(new Dimension(WIDTH,30));
          toolBar.add(newGameButton());
          toolBar.add(saveGameButton());
          toolBar.add(loadGameButton());
          JPanel gamePanel = new JPanel();
          add(gamePanel,BorderLayout.CENTER);
          gamePanel.setPreferredSize(new Dimension(WIDTH,HEIGHT));
          gamePanel.setBackground(new Color(212,208,200));
          pack();
       }Thanks

    I suggest you to try your question at Java product
    forum at http://forum.sun.com/jive/index.jspa under
    Java Tools section. You may try either "Sun Java
    Studio Creator" or "Sun Java Studio Enterprise" forumWould you please stop posting the same silly message? The post is not related to what you are mentioning.

  • Is it possible to resize the Menu Bar and other toolbars to make them smaller vertically?

    With the update to Firefox 4 my menu bar and toolbars are now taking up significantly more space than they where previously - is there any way to resize them so they take up less space?

    Thanx, I had searched for "compact themes" and didn't find all of those for some reason (may have been a typo in the search field... I do that sometimes... =/ )

  • Hide Menu bar at Transaction iview

    Hi,
    I hav created a Transaction(e.g:se11) iview and i m displaying it in my portal.
    Its displaying properly...but the problem is its displayinlg along with menu with options
    Menu,Save as Variant, OKCode,Back,Cancel,Execute etc.,
    Now i dont want to display the whole tool Bar. How to hide this tool bar.
    And at the bottom of the page is its displaying the client number, current transaction code, current login id etc. How to hide this also...
    Kindly let me know process
    Thanks in advance,
    Renu

    HII Renushree.
    use this links
    Hiding menu/tool bar on WebGUI Transaction iView
    hiding menu bar and toolbar in WinGUI used in transaction iView
    Or
    if u mean by  the browser address/men/toolbar? If so go to the iview properties and put toolbar=no in the Window Features parameter (under Navigation).
    Thanks
    Rewards r welcome
    Edited by: Mayank  Saxena on Sep 15, 2008 5:24 AM

  • I accidently Hid The menue bar and Navigation bar and only left with the bookmarks...I tried right click but cant find the right spot for the box to pop up to check menue bar, i also tried pressing alt and it did nothing. what else can i do? I need this a

    I was trying to hide just my clock for the history and the menu bar(file,edit all that), I dont know what i clicked but it got rid of everything except for the bookmark tabs. I know if you right click on the menu bar you can fix it, but since there is no menu bar anymore, this isnt working. i looked up how to do it in the forum found out you can press alt and do it that way, maybe i didnt do right, but that didnt work either.please help me!
    == This happened ==
    Just once or twice
    == I tried to hide my history and menu bar, and it jost got rid of it all. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)

    If that still doesn't work then see http://kb.mozillazine.org/Corrupt_localstore.rdf
    (caution: do not delete the localstore.rdf file in the Firefox program installation folder)
    Note:
    Deleting the file [http://kb.mozillazine.org/localstore.rdf localstore.rdf] will reset the customizations of the toolbars to the defaults.
    You can rename ''localstore.rdf'' to '''localstore.rdf.sav''' to test if that solves it.
    Then you can restore the customization by copying ''localstore.rdf.sav'' to ''localstore.rdf'' if it didn't work.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Menu bar and application toolbar

    is there a way to change item text on menu bar and application toolbar  eg in business partner overview(T-Code fmcacov) i want to change text 'Business Partner" to "tax Payer" on both menu bar an application toolbar. i have tried the norma way of going to change the screen but when i am on the GUI status its not going to change mode even sfter entering the access key

    Hi ,
    Open the program and click on GOTO=>ATTRIBUTES.
    Change the text to the heading which you want.
    SAVE & ACTIVATE.
    Regarding opening in change mode, the steps you have carried out are correct.
    You need to comment the existing gui-status by placing cursor on that line & click delete.
    Then click on INsert button and add new gui-status.
    Best regards,
    Prashant

  • Hide Command Bar and Menu Bar

    Hello there,
    Iam trying to display a transaction in portal. For this iam using a Transaction I View. But iam able to find two menus and the command box at the top of the iview.
    How can i restrict these from appearing?
    Iam using ECC6. EP7  (Integrated ITS)
    Iam <b>not</b> using an Internet Service, iam directly calling the transaction using the Iview.
    Kindly show some light
    Thanks and Best Regards
    Sera

    Hi,
    Pls see the foll threads:
    <b>How to hide the system and help menu from the standard menu bar? Help!</b>
    How to hide menu bar in WEBGUI for HTML
    Standard Menu
    BR,
    Disha.
    Pls reward points for useful answers.

  • How to increase size of fonts in Menu bar and in Safari toolbar?

    How to increase size of fonts in Menu bar and in Safari toolbar?  Munu bar and Safari toolbar  fonts too small on a 24" iMac screen.
    Thanks in advance !

    If you want to change the size of the font of a TextEdit text document, you do it in the preferences. Alternatively, if you want control over the size of the fonts, make it a Rich Text document, and then you can change the font size. You can either use the Larger or Smaller options, or Show Fonts to choose a size. You can elect to have new documents be Rich Text in the preferences as well.

  • Downloaded Mt Lion Yesterday and my Tool bar has disappeared. I can still access the individual tools but cannot see my header.  I used 'help' and did what it suggested. slected 'hide tool bar' and then 'show toolbar'.  I also restarted etc.

    Downloaded Mt Lion Yesterday and my Tool bar has disappeared. I can still access the individual tools but cannot see my header.  I used 'help' and did what it suggested. slected 'hide tool bar' and then 'show toolbar'.  I also restarted etc.

    Good point BDAqua, the Escape key helps get me back to reality in Lion.
    While I've only dabbled around a little in Lion since it's release (I upgraded a 10.6 Clone to Lion on one of my FireWire Drives) now I'm currently downloading Mountain Lion (to upgrade a Clone of that Lion Clone) so that now I can continue to move forward in madness.
    P.S. Trust me, I'm not laughing. 

  • When I maximize my screen on my Mac it hides the menu bar and the typed tool bar at the top of the screen - how do i fix this

    When I maximize the screen on my Mac Book Pro it hides the menu bar and the typed tool bar at the top of the screen as well.  How do I undo this?

    10.7 "Full Screen" is a feature imported from IOS, the land of tiny screens.
    To use a larger window on a REAL computer, adjust the Window's size to suit your needs. Do not use "Full Screen".

  • How to hide the menu bar and Dock

    Howto hide the menu bar and Dock on Mac, I found a tutorial that addfunctions esto info.plist this
    <key> LSUIPresentationMode </ key>
    <integer> 4 </ integer>
    But does not work  which you know another way to do this?

    I have played with 'LSUIPresentationMode' in the past - I may be wrong but I think a value of "1" (and "2" for that matter) only really works in combination with 'LSUIElement' set to a string value of "1". The 'LSUIElement' property of course does away with the application's own menu items so isn't ideal for most applications and since you mentioned using "1" instead of "4", I assume you want your menu items visible all the time.

Maybe you are looking for

  • DVDRW/CDR Drive no longer recognizes data on data disks!

    After installing itunes 10, any dvdr I put in my disk drive is recognized as an audio cd, even though it is a burned data disk with avi's on it? Now when i open it, it shows it as containing 1 file named Track01.cda. Short of uninstalling the softwar

  • Acrobat 7 Pro background music

    Hi, I've created a multipage PDFusing the page properties of the first page to load a WAV file. My problem is, one of the page has a link to an online video which launches IE and plays the video. However the music in the PDF continues to play, drowni

  • Mail Merge in Acrobat Pro XI or X

    Is it possible to do a mail merge in Acrobat XI or X Pro? I have a PDF which has one field at the top for a name. I would like to automatically merge a list of names from Excel or Word so that a separate PDF for each name in the list could automatica

  • How do  I export a set of pictures from iPhoto to Photos

    My MacBook Pro now has OS X 10.10.3 and the new Photos app. I have over 30K pictures in the iPhoto app in this laptop, and I do not have the need to sync all of these pictures with all of my iOS devices; I won't be using iCloud. I was not able to det

  • COPA document correction

    Hi All, is there any way to change the COPA document amount that already posted in the system? plz help me if any body done this previously. for EX: we created the billing document and with that billing COPA document also generated means the amount a