How to hide standard application toolbar through config?

Hi,
My requirement is to make the transaction SWIA available in CRM WEB UI and to hide some buttons from the application toolbar like the execute Work Item, display Workflow Log buttons and few more.  Is there a way i can do it through cong?

You can use transaction variants.
[http://help.sap.com/saphelp_nw04s/helpdata/en/67/232037ebf1cc09e10000009b38f889/frameset.htm]
Your fist step will be to execute transaction SHD0 and create a transaction variant for SWIA. Then you can create a Z transaction (ZSWIA) that will call SWIA with the transaction variant you have just created.

Similar Messages

  • HOW TO HIDE INSTALLED APPLICATIONS

    If i download and install any application and if i want nobody to know about that application, how to hide that application. Please help me

    For that you will need some 3rd Party Application.. Create another Folder and move all such applications there-in.. and you should be able to Password protact that folder...but the compatibility will depend upon your device. Check here after setting your Device Model...

  • How to disable statdard application toolbar button in O4TFN using BADI

    Hi,
    I want to disable standard application toolbar button in O4TFN using BADI, i want to disable it for specific users should be deactivated and for others it should be activated.
    Thanks in advance..

    Hi Ed,
    But in control panel -> user accounts -> Change user account control settings
     I can set the settings to always notify
    and default notify when programs try to make changes to computer.
    But I can't set it to never prompt because only administrator as power to do that and if I set never prompt in  administrator account the settings in standard user remains in
    always notify.
    so please let me know, if there is any other way to over come the problem.
    Main problem is application from unknown source always prompt for admin password.
    I need to disable it from prompting for admin password to run applications in standard accounts.

  • How to hide standard Iviews in MSS employee profile service

    Hi ,
    I am on MSS Add on 1.0 .
    when I click on Team then employee infomration then employee profile.
    I can see details of employee. How to hide additional information like salary data , compensation information, apprisal which is part of standard delivery.
    Please see attachment.
    Regards,
    Vijay

    Package PAOC_MSS_PROFILES_WDA Config ID            HRMSS_EMP_OVER_PROFILE Application name is HRMSS_EMP_OVERVIEW_PROFILE and there you can delete as shown in below blog for similar case. http://scn.sap.com/community/erp/hcm/employee-self-service/blog/2012/04/25/mss-homepage-customisation http://scn.sap.com/thread/3486553 http://scn.sap.com/thread/3554348

  • How to hide line console parameters through Cisco ACS

    Hi,
    Can any one of you please help me in the following scenario ?
    I want to hide the line console, line aux and line vty configuration parameters of the cisco devices based on user level privillages through Cisco ACS. For example, if a user logs into the devices with privilege level 7, then he should not be able to see the line paramenters on the cisco devices for which he had privilege level 7 access.
    Can you please help me out how to achieve this?? Your help in this regard is highly appriciated.
    Thanks

    This thing is possible with local authorization on IOS device. With ACS this is not possible.
    In acs you can set what all commands a specific user can issue. That feature is called command authorization.
    For show run you need to give priv 15. ACS works in a different way if you compare it with setting up local priv lvls on router/switch.
    Best way to set it up is to give all user priv lvl 15 and then define what all commands user can execute.
    Note : Having priv 15 does not mean that user will able to issue all commands.
    We will set up command authorization on acs to have control on users.
    This is how your config should look,
    aaa authentication login default group tacacs+ local
    aaa authorization exec default group tacacs+ if-authenticated
    aaa authorization commands 1 default group tacacs+ if-authenticated
    aaa authorization commands 15 default group tacacs+ if-authenticated
    aaa authorization config-commands
    aaa accounting commands 1 default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    http://www.cisco.com/en/US/products/sw/secursw/ps2086/products_configuration_example09186a00808d9138.shtml
    Regards,
    ~JG
    Do rate helpful posts

  • How to hide or lock toolbar fileds by using script

    Hi experts,
    Could you please let me know how to lock or hide toolbar fields by using script.
    Thanks,
    Pavan

    Hi Pavan,
    I dont think its possible using scripting because I don't find any APIs for toolbars.
    However, you can achieve this using toolbar customization.
    You can use the following config :
    Customization Type: Business Object
    Target Class ID: Contract Document (2002)
    Target Toolbar ID:system.toolbar.document.doccommon.contractdocument.contractdocumentactions.actions
    Overrides:
    Hidden  -- Yes 
    Let us know if you are looking for something else.
    Thanks
    Devesh

  • How to hide standard fileds ?

    Hi All,
    How can we hide the standard fields like Company Code , Location , Goods Recipents etc under the tab Basic Data in EBP?
    Thanks,
    Anubhav

    Hi Anubhav,
    You can use BBP_UI_CONTROL_BADI to hide these standard fields under the basic data tab.
    Sample Code:
    CASE IV_FIELDNAME.
              WHEN 'GS_SCR_BASIC_I-BE_CO_CODE' OR 'GS_SCR_BASIC_I-RECIPIENT_ID'.
                        CV_INVISIBLE = C_X.
                        CV_INPUT_READY = ' '.
    ENDCASE.
    You can try hiding these fields in the Screen Variant through the SHD0 Transaction.
    Thanks,
    Pradeep

  • How to display standard ALV toolbar function in Webdynpro ABAP

    Hi All,
    Could any one please let me know that how to display the standard ALV functions. What I tried is as follows:
    data :lr_config_table type ref to cl_salv_wd_config_table.
    data lr_function type ref to cl_salv_wd_function_std
    Got the reference by calling the get_model().
    Now tried to display a standard button say :
      CALL METHOD lr_config_table ->if_salv_wd_function_settings~get_function_std
        EXPORTING
          id    = 'SALV_WD_INPUT_INSERT_ROW'
        RECEIVING
          value = lr_function.
      CALL METHOD lr_function->set_visible
        EXPORTING
          value = cl_wd_uielement=>e_visible-visible.
    But I can't see the button added to my ALV toolbar! Could any one please help me out on this if I am missing something.
    Many Thanks!
    Somnath

    Hi..
    ALV report which when displayed normally allows users to insert and delete rows using the methods below from class Cl_Salv_Wd_Config_Table:
    I think add these lines to your code and check..
    IF_SALV_WD_TABLE_SETTINGS~SET_READ_ONLY (false)
    IF_SALV_WD_STD_FUNCTIONS~SET_EDIT_INSERT_ROW_ALLOWED (true).
    DATA: l_ref_cmp_usage TYPE REF TO if_wd_component_usage.
      l_ref_cmp_usage =   wd_this->wd_cpuse_alv_basic( ).
      IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
      DATA l_salv_wd_table TYPE REF TO iwci_salv_wd_table.
      l_salv_wd_table = wd_this->wd_cpifc_alv_basic( ).
      DATA l_table TYPE REF TO cl_salv_wd_config_table.
      l_table = l_salv_wd_table->get_model( ).
      l_table->if_salv_wd_table_settings~set_read_only( abap_false ). 
      l_table->if_salv_wd_std_functions~set_edit_append_row_allowed( abap_false ).
      l_table->if_salv_wd_std_functions~set_edit_insert_row_allowed( abap_false ).
      l_table->if_salv_wd_std_functions~set_edit_delete_row_allowed( abap_false ).
    Cheers,
    Kris.

  • How to hide iPhone applications from Family Share?

    How do you hide an iPhone application in Family Share?  I am able to hide applications on my iPad by swiping right-to-left and selecting Hide, but that does not work on my iPhone.  I’m running iOS 8 on an iPhone 5s.
    Family members can hide content, which won't be shared
    If a family member wants to prevent other family members from seeing something that they have purchased they can hide their purchase. Content that has been hidden by a family member will not be shared with other family members. You can hide content on an iOS device or iTunes/App Store/iBooks on OS X, for example in the App Store on an iOS device you simply navigate to the Purchased tab and swipe on something you want to hide and press the 'hide' button.

    I have an iPhone 4s running iOS 8 and was able to hide an iPhone app by going to App Store:Updates (bottom right):Purchased:My Purchases and swiping left on an app to show a red HIDE button and selecting it. Unhiding the app requires going to the iTunes store on your Mac or PC and unhiding it (see iTunes Store: Hiding and unhiding purchases).

  • I can't figure out how to hide a yahoo toolbar w/ this version (29)

    I'm not interested in disabling the toolbar, just hiding it. I occasionally need the real estate on my screen (especially for coursera courses) The previous version I was using allowed a quick and simple hide for toolbars. If its here in V29, I can't find it.

    This has been replaced with the Customization option
    *Go to [[Image:new fx menu]] > Customize
    *Drag the Yahoo Toolbar back into the "Additional Tools and Features" section.

  • How to trigger standard FPM events through coding.

    While a standard FPM event triggers, it carries out with some event parameters which are automatically filled and is taken care by standard program.
    I have a requirement to raise a standard event manually, but in this case, the standard event parameters are not filled.
    Can any one tell me if there is any way through which I can get the event parameters automatically by raising a standard fpm event manually.

    Hi Chittibabu,
    There is no any such method to fill the event parameters automatically while we raise standard fpm event manually. You have to fill the parameters accordingly before you raise fpm event manually.
    Regards,
    Ravikiran.K

  • How to hide navigation button in xml config file

    I have a photo gallery with a navigation button that allows for additional photo categories that I don't want to appear. Unfortunately, I can't open the .fla as it appears to have been created with a newer version of Flash. The code in the config.xml file is basically:
    <navigation>
      <menu 1> <content>
    </menu 1>
    <menu 2> <content>
    </menu 2>
    etc.
    </navigation>
    Is there a tag I can add to make the navigation link disappear?

    Deleting the navigation tags will make the xml malformed.  You need to keep those, but the parts in between can go.

  • How to hide installed application from Software Center 2012

    Hello,
    I would like to ask you whether it is possible in Software Center 2012 to remove the record of program that was installed successfully from application catalog.
    Currently it stays visible in SC as "Available" constantly informing users with popup that there is new software available for installation. This may be disturbing behavior for users.
    Technical specialist in our company would be very glad to know some workaround. Is there some xml file or registry on user computer that could be used to remove such record from Software Center 2012?
    Thank you very much for any advice!

    Hi,
    There is a related setting in Client Setting - Show notifications for new deployments.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to hide some applications like games or etc for protecting from prying eyes?

    please help me out and tell me if there is any app for this purpose!

    No there is not.
    Password the lock screen and don't let others mess with your phone.

  • How to hide standard page links on oaf page

    hello buddies,
    on the oaf page header section we have links like: "Navigator" , "Favorites" , "Home" , "Logout" , "Preferences" ..etc
    also, we have some links on the footer section like : "Privacy Statement" , "Home" , "Logout" , "Preferences" and copy right.
    I want to remove all these links on my custom page except for "Home" and "Logout" is this possible?
    please advise.
    Thanking you all to find some time to read my post!
    Jenny

    Hi,
    May be you need to remove the the links from the global Menu, ICX_STANDARD_GLOBAL_MENU or the related global menu in that page.
    See one of my old thead
    Re: adding a new link in global button bar
    and the blog
    http://apps2fusion.com/at/kv/321-oa-framework-copyright-privacy
    might be helpful.
    Thanks,
    With regards,
    Kali.
    OSSi.

Maybe you are looking for