ALV in EDIT-Mode: can't hide the toolbar in edit-mode

Hi,
I have supressed in my ALV all standard-buttons with the help of an it_toolbar_excluding. I have built my own toolbar (p_object->mt_toolbar). Until know everything is fine, the ALV shows only my own generated toolbar.
In that moment, when I change a property of a column in the fieldcatalog ( wa_catalog-edit  = 'X' ), both toolbars are shown, the standard toolbar and my own generated buttons.
What's wrong, how can I hide the standard toolbar when I am in the edit mode?
Kind regards
Andreas
Edited by: Andreas Waldt on Sep 3, 2008 5:19 PM

Thank you very much,
during testing I have recognized, that the buttons in the toolbar are new functions, because of the edit mode.
So I have put all the new button into the excluding list. It worked!
Thanks again!
Andreas

Similar Messages

  • I hid the toolbar(file,edit,bookmarks,history...etc.) backward,forward arrow and home icon also,how to show it again???tnx

    i hid the toolbar(file,edit,bookmarks,history...etc.) backward,forward arrow and home icon also,how to show it again???tnx
    == This happened ==
    Just once or twice
    == last night

    '''Menu Bar''' (File, Edit, View, History, Bookmarks, Tools, Help)
    Press ALT+ V T M (CTRL+V T M on Macs) on your keyboard. This should restore the menu bar (Firefox 3.6)
    '''Other toolbars'''
    View|Toolbars|Select the desired Toolbar
    '''Other steps to try'''
    Try restoring the default set by going to View|Toolbars|Customize| Restore Default Set. This will put the toolbars back in the default place
    '''Safe Mode'''
    You May need to reset toolbars and controls via [[Safe Mode]]
    Make sure you completely close Firefox first. When you get to the Safe Mode window, select Reset toolbars and controls and then Make Changes and Restart.
    Hope this helps!

  • Can we hide the lines between the columns and rows of an alv in wd abap

    HI all ,
      I know that we can colour cell/column/row in an alv in wd abap.
       but, can we hide the lines between the columns and rows of an alv in wd abap.
         i have checked this link [hiding lines b/n rows and columns of an  alv|http://help.sap.com/saphelp_nw04/helpdata/en/91/e7eb40c4f8712ae10000000a155106/content.htm]
         but didn't  understand, can please anybody provide some example or any material..? it will be very helpful.
                                                                         THANK  YOU.
    Edited by: arfat111 on Feb 15, 2010 7:05 AM

    Code some like this in the WDDOINIT method of your view which defines the ALV component as used component.
    instansiate the ALV component
    data lo_cmp_usage type ref to if_wd_component_usage.
    lo_cmp_usage = wd_this->wd_cpuse_usage_alv().
    if lo_cmp_usage->has_active_component() is initial.
       lo_cmp_usage->create_component().
    endif.
    data lo_interfacecontroller type ref to iwci_salv_wd_table.
    lo_interfacecontroller = wd_this->wd_cpifc_usage_alv().
    data lo_value type ref to cl_salv_wd_config_table.
    lo_value = lo_interfacecontroller->get_model().
    hide the grid lines
    lo_value->if_salv_wd_table_settings~SET_GRID_MODE( value = '01' ).
    Thanks,
    Abhishek

  • Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    If you just mean, can I close it, sure. In Reader XI click the Tools button to close or reopen it.

  • How can I hide the password and user name in url???

    Hi experts,
    I'm creating a login page and know I have a problem.
    The Username and password are verified in a Java class, after checking the user and password, the user should be linked to the portal.
    So far everything has worked well.
    But when I call the lin like this
    res.sendRedirect ("/ irj / portal j_user =" + UserN + "& j_password =" + passw);
    then the user name and Pwasswort appears in the url.
    Can someone tell me how can I hide the password and user name???
    It will be very helpful.
    Thank you
    Edited by: Cilvaring on Aug 5, 2011 12:00 PM

    If there is no specific reason that you have to use sendredirect...thne you can try request.forward.....
    RequestDispatcher rd = request.getRequestDispatcher("pathToResource");
      rd.forward(request, response);

  • How can I hide the Navigation Input (at least the URL) in Firefox 29.0?

    I need to hide it for demonstrations to prevent attendees from browsing to a site while I'm showing it. This new release is not as clean looking when all the toolbars are unchecked. A minimal mode with tabs only would be helpful...the previous release was very good for this.

    Note that in previous Firefox versions it was still possible to bring up a replacement toolbar via Ctrl+L, so this version is actually better in this respect.<br />
    This code has been removed in Firefox 29 because you can't hide the Navigation Toolbar.
    Note that using an extension or code in userChrome.css can be overridden by starting Firefox in Safe Mode by holding down the Shift key when starting or the item in the Help menu.
    You can look at the Classic Theme Restorer extension to restore some functionality that was lost with the arrival of the Australis style in Firefox 29.
    *Classic Theme Restorer: https://addons.mozilla.org/firefox/addon/classicthemerestorer/
    *Hide Navigation Bar: https://addons.mozilla.org/firefox/addon/hide-navigation-bar/

  • How can we hide the coloumn in h:datatable

    Hi Friends,
    How can we hide the coloumn in h:datatable. <h:dataTable id="catalogueTable" rows="10" width="100%" binding="#{searchCatalogue.catalogueTable}" value="#{searchCatalogue.screenList}" var="catalogue" >
                                                <h:column >
                                                    <h:selectOneMenu id="searchModes" value="#{catalogue.selectedType}">
                                                        <f:selectItems value="#{catalogue.searchModesList}" />
                                                    </h:selectOneMenu>
                                                </h:column>
                                                <h:column>
                                                    <h:outputLabel value="#{rb.ofthesewords}" />
                                                </h:column>
                                                <h:column>
                                                    <h:inputText id="searchTerm" value="#{catalogue.searchTerm}" style="width:100%" />
                                                </h:column>
                                                <h:column>
                                                    <h:outputLabel value="#{rb.in}" />
                                                </h:column>
                                                <h:column>
                                                    <h:selectOneMenu id="currCustIndx" value="#{catalogue.currCustIndx}" >
                                                        <f:selectItems value="#{catalogue.customIndexList}" />
                                                    </h:selectOneMenu>
                                                </h:column>
                                                <h:column>
                                                    <a4j:commandButton value="+">
                                                        <a4j:support event="onclick" action="#{searchCatalogue.addOneRowAction}" oncomplete="visibleListView()" reRender="catalogueTable,suggMsg" />
                                                    </a4j:commandButton>
                                                </h:column>
                                                <h:column>
                                                    <a4j:commandButton value="-" >
                                                        <a4j:support event="onclick" action="#{searchCatalogue.removeOneRowAction}" oncomplete="visibleListView()" reRender="catalogueTable,suggMsg" />
                                                    </a4j:commandButton>
                                                </h:column>
                                            </h:dataTable> Initially i want to hide the this coloumn
                                                     <h:column>
                                                    <a4j:commandButton value="-" >
                                                        <a4j:support event="onclick" action="#{searchCatalogue.removeOneRowAction}" oncomplete="visibleListView()" reRender="catalogueTable,suggMsg" />
                                                    </a4j:commandButton>
                                                </h:column> so how can i hide this one.
    Edited by: Edukondalu_Avula on Nov 4, 2008 8:33 PM

    at initial time i want to hide that coloumn(+means commandbutton coloumn). when i click + symbol button i want to show the datatable with all the coloumns at this time how can i show the hidden coloumn
    Edited by: Edukondalu_Avula on Nov 5, 2008 12:51 AM

  • Can i leave the adobe digital edition ID, authorized on my PC?

    Can i leave the adobe digital edition ID, authorized on my PC? Will it do someting to the PC if i leave it in authorized mode? Or must i erase it?

    Hi,
    In order to fix the problem you may follow steps as given below.
    Solution 1) 1) Open Digital Editions.
                        2) Connect the Reader
                        5) There you will find a new drive created similar to C or D drive under "My computer".
                        6) Open the Readers Drive and you will find a folder with name "adobe.digital.editions".
                        7) Delete this folder and plug off and re plug in the Reader.
                        8) Authorize Reader from the same Adobe ID which you used to Authorize Adobe Digital Editions.
    ..                  9) Now try to transfer books to your Reader
    Solution 2) Modify the manifest.xml file located in C:\Usres\Username\My Documents\My Digital Editions:
    1) Quit Digital Editions
    2) Make a backup copy of the manifest.xml (call it something like manifest.good)
    3) Open manifest.xml in notepad
    4) It will appears as one big long line of xml, and you are looking for a tag called  start at the begginning of this
        and select until you the end of the tag that looks called </de:deviceID>
    5) If you have attached more than one Reader there may be multiple of these.  Delete all of them to make sure.
    6) Save the file (manifest.xml) and quit out of notepad
    7) Ensure you have the Reader plugged in
    8) Launch Digital Editions
    9) The Device Setup Assitant should come up.
      a) Do NOT click on the "Don't ask again for this device" checkbox.
      b) Do click on the "Authorize Device" button.
    I hope this will help you.
    Regards
    Rizwan

  • I already have adobe digital editions on my mac pc and download books from the library to my android e-reader. Can I use the same digital editions on my ipad air, or do I need to load a different one onto my ipad?

    I already have adobe digital editions on my mac pc and download books from the library to my android e-reader. Can I use the same digital editions on my ipad air, or do I need to load a different one onto my ipad?

    Try following forum:
    Adobe Digital Editions

  • How can I hide the class file ??

    Hi !
    I has a question, when i write a program of Java, then use the command "javac" to compiler to class file for other people using, but the class file can be disassembled and convert to source code. How can I hide the class file and let people can not disassemble, or can not see the source code. Thinks

    See these....
    http://www.saffeine.com/
    http://www.jarsafe.com/
    I recently read this. This will help you.
    http://developer.java.sun.com/developer/qow/archive/160/index.jsp
    Enojy....
    Rajesh

  • Can I hide the set time in the event boxes in Week View?

    Can I hide the set time in the event boxes in the Week View?

    David
    No way around this that I can find. That toolbar pops up if you pause the show.
    The nearest I could figure is to use the settings button for a long slide - 'Play each slide for 120 seconds' then tapping the arrows will move the slides along without showing the toolbar. And the 120 second slide is almost as good as a pause.
    iPhoto menu -> Provide iPhoto Feedback
    Regards
    TD

  • How can i hide the menu bar at the bottom of the app in itunes

    how can I hid the bar at the bottom of the App screen in itunes. Where it shows how much audio, app etc space you have left on your device

    Unforrtunately the status bar doesn't make any difference, however I have worked out that the bar does show when I go into full screen. 
    I would have thought it should also work when not in full screen - it certianly used to.

  • How can I hide the borders and keep it as an option?

    How can I hide the borders and keep it as an option?  I had someone go into the css I believe, and make it so there were no borders visible on the page (I could see the dotted outline while working on it, but when pushed, it wasn't visible (which is what I wanted).  They called it "noborders."  Since I had to reinstall, it went away.  Help?
    I have Dreamweaver CS5.5

    Try this site:  CSS Border
    Add code then type in a zero. Later add border size you want.
    examples:  border: 0px solid black;
    or
    border: 1px 000000;
    or
         border-top-style: solid; 0px 000000;
         border-right-style: dotted; 0px 000000;
         border-bottom-style: solid; 2px 000000;
         border-left-style: dashed; 1px 000000;

  • Can we hide the field in Shopping Cart of SRM

    Hi..
    Can we hide the field in Shopping Cart of SRM??
    I have to hide some of the fields from SRM shopping cart screen. is it possible to hide the fields??
    Please suggest me
    Thanks.
    Regards,
    Manoj Tiwari

    Hy,
    For screen variants, just go to transaction SHD0.
    The only screen variants available in SRM 4.0 are:
    Item data overview in an invoice without purchase order reference: BBP_IV_NON_PO
    Item data overview in the invoice with purchase order reference: BBP_IV
    Item data overview in the confirmation: BBP_CF
    Item data overview in the confirmation for time recording: BBP_CF_TIMEREC
    Item data overview in the purchase order: BBP_PO;
    Item data overview for contracts: BBP_CTR_ITEMLIST
    Item data overview for selection of contracts: BBP_CTR_ITEM_SELLIST
    Search results for entering an invoice and/or confirmation: BBP_SEARCH_PO
    Search results for entering a purchase order: BBP_SEARCH_SC
    Search results for displaying/processing an invoice: BBP_CHANGE_IV
    Search results for displaying/processing a confirmation: BBP_CHANGE_CF
    Search results for entering/displaying/processing/status of a shopping cart: BBP_SC;
    Worklist for Sourcing: BBP_SOCO_WL
    Work area in Sourcing: BBP_SOCO_GA
    This is very light, and most of the SRM project have to make Templates, or ABAP screens repairs, to Hide/Show fields.
    Regards.
    Vadim

  • Can I hide the Address line through a URL?

    Can I hide the address line (and button bar, and menu bar) from a URL address? We are generating an Oracle report, and I was hoping to be able to hide the address bar when the report is opened in a new window. Since the report server creates the html to show the report I can't control it there (or can I?).
    Thanks,
    Jim

    Jim,
    the only way of achieving this is to call a Javascript function on teh page that initiates the Reports request. Thsi Javascript function would do a window.open() call where you specify the Reports request URL and all the browser window characteristics, like hiding the menu bar.
    Frank

Maybe you are looking for

  • Safari won't open since I upgraded my system

    I recently went from Mac OS X version 10.3.9 to 10.4.6 (and then 4.7), but Safari won't open and a window pops up and says The application Safari quit unexpectedly. Mac OSX and other applications are not affected. This happens repeatedly. Any suggest

  • POSDM Monitor : /POSDW/MON0 Question

    Hi All, I have a very simple question (I guess). When "Process Tasks Online" for a POS transaction we get a popup window with the same title. In the popup window we have "Processing Task"  Drop Down List which shows all the relevant tasks. My questio

  • HI wat's use of notes and patches in sap why its require..

    Hi can anyone give me idea about notes and patches why its required and wat's its effect in  technical side and in functional side also.. Thanks & Regards,   Nainesh.

  • MovieClip versus Button

    The setup: A 6-tab navigation with a simple animation where the tab rises and falls. Each tab is a separate movie clip that uses a "null" Button (read: square graphic with alpha set to 0) as a hit area contained within each timeline. The Issue: When

  • Imovie download issues on Mac OS X Lion 10.7.5

    Hello, I am doing a project for an organization and they want me to create some videos via Imovie. However whenever I go to the download button on the mac store, It says that I'm unable to download imovie, because the computer's software is not updat