Removing buttons from the assignment block

Dear WebUI experts,
I want to remove the buttons for creation of 'corporate account', 'group account', 'individual account' from the search account workcenter page.
http://picasaweb.google.com/satishsoni.sap/SAP?authkey=Gv1sRgCJz0wMn5j_ftvgE
The authorisations given to the user are display only still the create buttons are displayed.
Thanks
Satish

Go to Tx: BSP_WD_CMPWB
Enhance the component/ view: BP_HEAD_SEARCH/MainSearchResult
Redefine method:  DO_PREPARE_OUTPUT with something like this:
CALL METHOD super->do_prepare_output
  EXPORTING IV_FIRST_TIME = IV_FIRST_TIME.
DELETE LS_BUTTON WHERE ON_CLICK = 'CREATECORP'.
DELETE LS_BUTTON WHERE ON_CLICK = 'CREATEIND'.
DELETE LS_BUTTON WHERE ON_CLICK = 'CREATEGROUP'.
Before this I think you shold take a look at the Auth. Obj. UIU_COMP for authorizations on this buttons.
Best Regards

Similar Messages

  • How do i remove buttons from the RichTextEditor?

    hey guys,.. i need to get rid of all the buttons in the RichTextEditor, i just want the link thing in there... but not any of the bold, italics, or underlined...

    I'd probably try subclassing it and hiding the controls you dont want. This may help get you started: http://blog.flexexamples.com/2007/12/04/hiding-nested-controls-in-a-flex-richtexteditor-co ntrol-remix/ (you may also need to set includeInLayout=false to remove the reserved space):
    private function checkBox_change(evt:Event):void {
        var ch:CheckBox = evt.currentTarget as CheckBox;
        richTextEditor[ch.data].visible = ch.selected;
        richTextEditor[ch.data].includeInLayout = ch.selected;
    Peter

  • Remove 'Buttons' from INFOVIEW toolbar

    How would I go about removing buttons from the Infoview Toolbar (Send, New etc...)
    Thanks

    Hello Daniel,
    some of these Buttons can be removed by permissions in the CMC. The others have to be removed by coding the InfoView .jsp Files.
    Check the following SAP Notes:
    1286494
    1286496
    1197103
    1283449
    Regards
    -Seb.

  • Remove export to excel button on an assignment block

    Hi
    I have a requirement to remove the "export to excel button" on an assignment block".
    I have coded the following in .htm
    <chtmlb:configTable xml              = "<%= lv_xml %>"
                          id                    = "BuilContactPerson"
                          navigationMode        = "BYPAGE"
                          onRowSelection        = "select"
                          table                 = "//BuilContactPerson/Table"
                          displayMode           = "<%= controller->view_group_context->is_view_in_display_mode( controller ). %>"
                          width                 = "100%"
                          headerVisible         = "FALSE"
                          hasLeadSelection      = "TRUE"
                          downloadToExcel       = "FALSE"
                          actions               = "<%= controller->gt_button %>"
                          selectionMode         = "<%= BuilContactPerson->SELECTION_MODE %>"
                          selectedRowIndexTable = "<%= BuilContactPerson->SELECTION_TAB %>"
                          selectedRowIndex      = "<%= BuilContactPerson->SELECTED_INDEX %>"
                          visibleFirstRow       = "<%= BuilContactPerson->visible_first_row_index %>"
                          usage                 = "ASSIGNMENTBLOCK"
                         />
    Though I have coded the downloadTo Excel to "FALSE" the button still appears.
    I think the button comes by default for an assignment and I am not sure how to restrict for assignment block.
    Can anyone please provide some pointers on this?
    Thanks
    Sushma

    H Sushma,
    Could you check with this SAP note 1288220 inorder to disbale the export to excel in the AB's.
    Regards,
    Venkat.

  • Is there no way to simply remove realplayer from the blocked list?

    ...My issue is someone disabled the realplayer extension / addon /
    plug in for some ungodly reasoning due to some block list.
    I'm over here cussing a blue streak at this choice of blocking,
    especially when I cant goto my "add ons" area and simply click
    "options/ turn on / enable etc" and what have you. Everything is greyed out thanks to an annoying block list filter.
    Which, from my understanding doesnt even apply to my version of firefox. I have had realplayer on here for YEARS and it has never once caused me any problems.
    And now because some one decides it causes issues with firefox version whatever, they're going to block it on a master block list for some reasoning? Tch.
    Is there NO WAY to simply remove realplayer from this said block list? I know I can go into about;config and disable the -whole- list, which I dont want to do.
    Cant someone make this thing a little more user friendly with the block list? Put some damn check boxes next to it so I can filter what I want.
    And if someone tells me to update something or another... -twitch-
    Everything had been working just fine for me until someone started playing with the ^%$#&ing block list.
    https://addons.mozilla.org/en-US/firefox/blocked/ <--- top two.

    It says: ''users can re-enable it from the Add-ons Manager if necessary''
    *https://addons.mozilla.org/en-US/firefox/blocked/i106
    *https://addons.mozilla.org/en-US/firefox/blocked/i107
    <blockquote>Why was it blocked?<br />
    The RealPlayer Browser Record extension is causing significant problems on Flash video sites like YouTube. This block automatically disables the add-on, but users can re-enable it from the Add-ons Manager if necessary.</blockquote>
    You can try to delete the files extensions.* (e.g. extensions.sqlite, extensions.ini, extensions.cache) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to check if there is a compatibility update available.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons

  • How can I remove the Star Button from the Address Bar?

    How can I remove the Star Button from the Address Bar? There's no obvious way of doing it. Is there any about:config value related to it?

    https://addons.mozilla.org/en-US/firefox/addon/no-star-button/

  • How to dynamically add/remove a button from the ribbon based on some condition? (Ribbon XML)

    Hi,
    I have a ribbon (done using ribbon XML) with menu options. I need to remove few buttons from the menu dynamically based on some condition. Also, I want to change the label of another button. How to achieve this programmatically? (C#)
    Thanks in advance.
    Thanks Prasad

    Hello Prasad,
    Use callbacks for populating Ribbon controls such as menu, dropDown, gallery and etc. Then you can use the
    Invalidate or
    InvalidateControl methods of the
    IRibbonUI interface to get your callbacks invoked when required. Thus, you will be able to delete the required item(s).
    You will find the following articles in MSDN helpful:
    Chapter 11: Creating Dynamic Ribbon Customizations (1 of 2)
    Chapter 11: Creating Dynamic Ribbon Customizations (2 of 2)
    To change the label of your controls at runtime you need to use the getLabel callback and call the Invalidate or InvalidateControl methods of the IRibbonUI interface. The following series of articles describe the Fluent UI in depth:
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • How can I remove the Emergency Call button from the lock screen Xperia Z2

    How can I remove the Emergency Call button from the lock screen on my Z2 phone

    Alecuk wrote:
     It's like the stupid bold font on the hours or the lock screen clock - i've never seen anything so stupid in all my life.
    it's things like this that make a good phone c.r.a.p.
    Hi, well if you do a little bit of research on the forum you will be able to see that you can & very easily able to change the font on the clock 

  • How to remove/supress the multilevel heuristics button from the plng book

    Hi Gurus,
    how can i remove or supress the multilevel heuristics button from the SNP Planning book..
    could you share your ideas.
    thanks

    Hi
    You have not mentioned if you are using standard planning book or custom book. If it is a standard planning book provided by SAP you cannot make any changes to it . But if it is a custom book then all you have to do is , go to /n/sapapo/sdp94 bring up the planning book , go to design , select toolbar and remove the icon that you dont need and save .
    Thanks
    Aparna

  • How to remove the filter in the assignment block.

    We have a requirement where we need to clear the custom filter automatically in the assignment block ,when we press the save button.
    Can any one help me to solve this issue.
    Thank you,
    Deepthi.

    Hi Deepthi,
    Get the Assig. Block iterator list and use the standard method DELETE_FILTER (of interface IF_BOL_BO_COL_ITERATOR) in the save event.
    Regards,
    Shobhit

  • How to remove logoff button from the Portal?

    Could anyone help me to remove the logoff button from the Portal? I am using netweaver portal 7.0 Thanks!

    Hi Michael,
    Thank you for your reply!
    Can I do it through the portal or I have to do customized programming in NWDS? Could you please show me step by step in details?
    In the future the portal will be use SSO with active directory so user does not have to login/logoff. I think the session in the server will be closed after a couple of minutes. What do you think?

  • How can i remove comments from the "tell your frie...

    How can I remove comments from the "tell your friends how you're doing" section?

    Please do a Skype reset.
    Exit Skype : From the system tray >> right click on the skype icon and click "Quit"
    Press WinKey+R
    Type: %appdata% and press Enter.
    Rename the folder "Skype" to "Old_Skype"
    Run Skype.
    You will need your password to re-log on, and re-set any options from default
    Regards,
    Tamim
    Location - Dhaka | Bangladesh - Standard Time Zone: GMT/UTC + 06:00 hour
    If one of my replies has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.

  • How can I remove things from the home screen

    How can I remove things from the iPad home screen?

    Hold down an icon until all icons start to wiggle.
    You then have two choices:
    1.  Drag the icon to the right so it goes to a different (non-home) screen.
    2.  If the icon is not supplied by Apple as part of iOS, you will see a small "X" in the upper left corner.  You can click that to delete the icon.
    Stop the wiggling by pressing the home button.

  • HT201250 how do I disable time machine? I want to use my external drive as additional storage. But it mirrors everything I edit. If I remove a document, it removes it from the external drive as well.

    how do I disable time machine? I want to use my external drive as additional storage. But it mirrors everything I edit. If I remove a document, it removes it from the external drive as well.
    I purchased a 1 TB WD passport drive, formatted for Mac. I set it up originally (mistakenly) to backup time machine. I went back and set it to "do not backup"  It still backs up evey document I edit. If I add a document when the drive is disconnected, it automatically adds it to the external drive the next time connect to the passport drive. If I remove a document the same thing happens.
    I need additional storage to free up space on my laptop hard drive. This is not working the way I want it to. Help!

    Do not backup your startup volume to another partition on the same drive. If the drive fails you have nothing. Always backup to another drive or volume on another drive.
    The I/O error usually means there's a problem with the drive. Clone ASAP, then repartition and reformat the main drive. Then restore the clone. Here's the basic process:
    You will have to backup your OS X partition to an external drive, boot from the external drive, use Disk Utility to repartition and reformat your hard drive back to a single volume, then restore your backup to the internal hard drive.
    Get an empty external hard drive and clone your internal drive to the external one.
    Boot from the external hard drive.
    Erase the internal hard drive.
    Restore the external clone to the internal hard drive.
    Clone the internal drive to the external drive
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.
    Restart the computer and after the chime press and hold down the OPTION key until the boot manager appears.  Select the icon for the external drive and click on the downward pointing arrow button.
    After startup do the following:
    Erase internal hard drive
    Open Disk Utility in your Utilities folder.
    After DU loads select your internal hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.  Do not quit Disk Utility.
    Restore the clone to the internal hard drive
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the internal hard drive. Source means the external startup drive.
    Note that the Source and Destination drives are swapped for this last procedure.

  • Firefox will not open at all. I tried to remove it from the programs to try to reinstall it but it wont let me remove it. So I tried to download again anyways and ff still wont open. My email is alicia@*****

    Firefox will not open at all. I tried to remove it from the programs to try to reinstall it but it wont let me remove it. So I tried to download again anyways and ff still wont open. My email is alicia@****

    Did you check your security software (firewall)?
    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process.
    See [[Server not found]] and [[Firewalls]] and http://kb.mozillazine.org/Firewalls
    If necessary then also see:
    * http://kb.mozillazine.org/Browser_will_not_start_up
    * http://kb.mozillazine.org/Error_loading_websites

Maybe you are looking for