Disabling or Removing Forward icon(option) from business workplace

Hai All,
My user is asking to remove or disable the forward icon from business workplace. Is there any config setting to do this. Please let me know how to solve this problem,
Thanks & Regards,
H.K.Hayath Basha.

Hi,
I don't know if the icon will disapear, but what you could try is that you change the autorisations for the user. Check object s_wf_wi and remove the activity 25.
As fas as i know, the user can't forward an item.
Also check object s_oc_role, make sure that the value isn't administrator.
I hope it helps,
Kind regards,
Maarten.

Similar Messages

  • How to remove Forward/Resubmit options from UWL workitems

    Hi Folks,
    I have a requirement to remove Forward/Resubmit options from UWL workitems of the Hover menu.
    Can anyone let me know how to do it ?

    Hi Chaitanya,
    If you want to remove forward and resubmit actions for all the UWL items, it should be simple.
    Open the UWL iview and look for a property called "List of UWL actions to exclude".
    In that property enter the values "followUp" and "forward" separated by a comma.
    followUp - Resubmit
    forward - Forward
    This should remove the two actions for all the UWL items.
    Here is a help link with more info:
    [UWL Action to Exclude|http://help.sap.com/saphelp_nw04/helpdata/en/fd/8bf6d1b0484ec7ade4369792a22293/content.htm]
    If you want to remove these options for selected UWL items only, refer to this forum:
    [post|Exclude Actions from UWL using XML;
    Thanks,
    Shanti

  • How to remove create placement option from action of HRMS people screen

    Hi All,
    Please can you suggest me the way to remove 'create placement' option from action field of UK Super HRMS manager responsibility or any responsibility .I have tried it by task flow approach.So kindly suggest different approach.
    Regards
    Akash

    There is a system lookup_type HR_PTU_ACTION_TYPES which gets these values.
    Not sure if you can disable it(unless you go by the Help - Diagnostics - Examine)

  • How do I remove the "Dock" option from the Apple Dropdown Menu

    I work for a school district where I am continuosly having to go back into Mac labs and reverting the settings on the dock back to normal.  Students are changing the size, position and content of the dock, as well as hiding the dock.  These computers are used by students k-6 and the younger children are getting confused when they com in and they cannot find the dock or its not where it is supposed to be.  I have been able to lock the sizing, position and content of the dock but am not finding a way to elimante the hiding of the dock.  Preferably I would like to remove the "dock option from the Apple dropdown menu.  Please help!!!!

    This question was asked quite a while ago and the suggestion was to use Server Admin Tools, which I know nothing about. You'll have to look into that. If these Macs are running off a server, then this might work for you. I'm seeing that Server Admin Tools from Apple is still current.
    https://discussions.apple.com/thread/287704?start=0&tstart=0

  • Sending from Business workplace to External mail ID

    Hi,
    Please Some help me on this issue am getting below error  when am trying to send mail from Business Workplace to External Mail
    Cannot process message , no route from SAPUSER TO abc123 at gmail dot com
    I done configuration by refereeing below.
    Please follow these steps:
    1.) tcode = SCOT
    2.) double click SMTP
    3.) under "SMTP Connection" section, fill in your mail host IP(ex: webmail.sap.com) and the port number(25) and code page = No conversion.
    4.) under "Supported address types", make sure Internet is checked, and click on "Set". The Address area has to be *
    5.) To test route,
    SCOT -->Utilities --> Routing test
    RecipientAddr.type = INT
    Recipient addr. = abc.xyz at sap dot com
    6.) You also need to set the Default Domain.
    SCOT --> Settings --> Default Domains (webmail.sap.com)
    7.)Now go to tcode SBWP,compose a mail and in the recipient address,enter abc.xyz at sap dot com and send.
    8.) Come back to SCOT and click on Utilities-->Start send process(CtrlF7) and execute.+
    Thanks,
    GAL

    Hi
    Same problem with me.
    Mails are not sending to external mail id.
    Pls help me out!
    Regards.

  • Removing Forward menu option within MailFilterDialog in Convergence 1u3

    I followed the directions at the bottom of the following page:
    http://wikis.sun.com/display/CommSuite/Removing+Change+Password+and+Vacation+Message+Options
    and successfully removed the Forward item in the Options menu, however we are wanting to disable all forwarding from within Convergence, which would also include the "Forward Message To" menu item in the MailFilterDialog widget. I know I need to create the file <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailFilterDialog.js and put the following in <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/customize.js:
    // Remove the Forward Message to menu item
    dojo.require("c11n.allDomain.js.widget.MailFilterDialog");but I am unsure of the code that goes into the MailFilterDialog.js file.
    Thanks,
    Jim

    jbuitt wrote:
    and successfully removed the Forward item in the Options menu, however we are wanting to disable all forwarding from within Convergence, which would also include the "Forward Message To" menu item in the MailFilterDialog widget.I seriously question the value of disabling the manual forwarding of messages... that being said you can hide the forward button by using the following customization:
    Add the following to <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/customize.js
    // Hide forward button in folder view
    dojo.require("c11n.allDomain.js.widget.MailOpenFolder");
    // Hide forward button in message view
    dojo.require("c11n.allDomain.js.widget.MailOpenMessage");Create the following two files:
    <app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailOpenMessage.js
    dojo.provide("c11n.allDomain.js.widget.MailOpenMessage");
    dojo.require("iwc.widget.MailOpenMessage");
    dojo.require("dijit.form._FormWidget");
    dojo.declare("iwc.widget.MailOpenMessage", iwc.widget.MailOpenMessage,
                    buildRendering: function () {
                            this.inherited(arguments);
                            this["forwardButton"].domNode.style.display = "none";
                            console.debug("c11n: Hide Forward Button in Message View");
                    last: ""
    );<app_server_base>/domains/domain1/docroot/iwc_static/c11n/allDomain/js/widget/MailOpenFolder.js
    dojo.provide("c11n.allDomain.js.widget.MailOpenFolder");
    dojo.require("iwc.widget.MailOpenFolder");
    dojo.require("dijit.form._FormWidget");
    dojo.declare("iwc.widget.MailOpenFolder", iwc.widget.MailOpenFolder,
                    buildRendering: function () {
                            this.inherited(arguments);
                            this["forwardButton"].domNode.style.display = "none";
                            console.debug("c11n: Hide Forward Button in Folder View");
                    last: ""
    );Regards,
    Shane.

  • Removing Calculate tax option from F-47

    Hello Sap Guru's,
    We have a requirement to remove Calculate tax check box option from F-47 screen.Please note the we have already deactivated tax code field.Kindly let us know how it could be done.We even try to make transaction variant for this but it is not possible to create trans variant.
    Kindly advise.
    Regards,
    Shikha

    Hi,
    Yes it is possible to create transaction variant, & I have just tested & its working perfectly fine as per your requirement, with T.Code F-47.  Please follow the following steps given in this thread:
    Disabling tabs in SHD0
    Regards
    Javed

  • Removing file transfer options from client GUI.

    How do you remove all of the file transfer options from the client GUI (the button, the right-click menu option, etc.)?

    You can add <argument>allow_attachments=false</argument> in /var/opt/SUNwbsvr7/https:<hostname>/webapps/<hostname>im/en/im.jnlp file
    to disable file transfer options from the Client GUI.
    Or else if your using AM with IM then you can disable by setting the proper policy for DefaultUser through amconsole.

  • How do I remove the Inprivte option from my system?

    I'm looking for a way that will allow me to completely remove the Inprivate option off of my system.

    Inprivate is a feature of Internet Explorer, this is a firefox help forum. I'm not quite sure what exactly you mean/want here.

  • How to remove US Keyboard option from Finder menu

    Hi,
    I'm using a new iMac (OS 10.7.4) and was wondereing if it possible to stop my machine from constantly changing the input menu from "Britsh" to "U.S.". This is the item with the small national flag icon in the Finder menu.
    Is there a way of removing one of these options permanently, in my case remove the U.S. option?
    Many thanks,
    TonyT

    Hi Tony,
    Go to System Pref > Language & Text > Input Sources where you can select British and deselect any US input source.

  • How do i remove the airplay option from the screen saver on my apple tv.  Its blocking all my pictures

    The Airplay Screen saver option telling me to choose a wi fi and choose this apple tv keeps poping up on my apple tv when it goes on screen saver mode.  It blocks all of my photos showing on my screen saver.  Can anyone help me to remove this

    Welcome to the Apple community.
    Assuming that both devices are connected to the same network and that airplay is not turned off in your Apple TV settings, then you should be able to see the airplay icon when playing content on your iPad, by tapping the screen to reveal the playback control bar.
    If you do not see the airplay icon when you do this, you might try restarting the iPad, the Apple TV and your router.

  • How do I disable hardware acceleration? (This option from preferences menu not works on Linux)

    I want to disable hardware accelaration because it freezes my pc at startup.
    I am convinced that HA causes this problem.
    My OS is Crunchbang (http://crunchbang.org/about/) .
    My pc is a pentium 4, nvidia 5200 gpu, nouveau drivers.
    I ask for help at MozillaZIne Forum (http://forums.mozillazine.org/viewtopic.php?f=38&t=2767265) and at Crunchbang forum.
    I disable HA in firefox (preferences and about:config) without result.
    In FireFox General Options "Use hardware accelaration when available" is disabled.
    In about: config gfx.content.azure.enabled is false and gfx.direct2d.disabled (user set) is true.
    Also xorg.conf doesn't help me.
    In xorg.conf (configuration file of Nouveau GPU driver) hardware accelaration is disabled.
    The only solution is to disable nouveau hardware accelaration editing the boot menu (kernel boot parameter : nouveau.noaccel=1) and firefox works.
    But HA is necessary for other applications like OpenOffice.
    If HA is disabled menus, buttons and other UI components do not show properly

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Way to remove Remember me option from jnlp login?

    We have an application that launches a webstart console. The login for the console has an option to remember the user's password. This is a security problem. Can the option be removed?

    Hi,
    Please refer to the following article.
    http://mmman.itgroove.net/2011/11/03/hiding-a-menu-item-in-a-sharepoint-context-menu/
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/2cfd4325-3431-4ade-b08c-cf841aa9ca9f/how-to-hide-edit-item-in-a-sharepoint-list-context-menuecb-?forum=sharepointcustomizationlegacy
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • Remove forwarding vertical lines from email

    I want to forward a brochure that is in my mail box to potential new customers, but I always have those colorful vertical bands to the left of test showing that it is being forwarded, is there a way to remove these to make my brochure look more professional?

    Have you tried selecting Message | Send Again? This should work after you've corrected the "To" address.

  • How to remove the Advanced Options from Grub boot menu

    The new version of grub groups kernels under a section of the menu called Advanced Options which makes selecting a kernel unattended impossible. Can this behavior be disabled so that grub.cfg has simply one menu item per kernel like the old behavior? Thank you.

    @bstaletic, your link 'this thread' directs to a github page, which as I can see it has nothing to do with the grub problem.
    @maggie, https://bugs.archlinux.org/task/38455, which indicates you have to disable /etc/grub.d/10_linux .

Maybe you are looking for

  • Error when creating Invoice via DI API

    Can you help me, I have a problem about DI When I create invoice with serial number and create transaction with 1 item in many serial number itu2019s no problem but If i create transaction with 2 diffrent item with many serial number has error the er

  • ORA-00313 problem, thank you very much!!

    Hi, there, when I use OEM standalone to login the database, I found there is an error: ORA-00313:open failed for members of log group1 of thred 1 ORA-00312:online log 1 thread 1 "c:\oracle-database-server\oradata\redo01.log" then I can't open the dat

  • HT1212 hard reset for iphone 5

    My iphone 5 was stolen and then cleaned I want to hard reset how do I do a hard reset on a phone that has a lock code when I connect it to itunes it says it has lock code on it

  • Cant get picture to center in frame when placed.

    When I drop a picture in a frame it will go to the top left hand corner instead of the center.  I have my reference point centered on the control bar and also on the Frame Fitting options but it still go to the top left corner.  Am I missing somethin

  • I'm trying to download the trial version of Photoshop.

    I'm trying to download the trial version of Photoshop. I can't tell if it's doing anything or not. How can I tell if it's downloading?