cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove Assign To me and Launch WebDynpro button from UWL

former_member182205
Participant
0 Kudos

Hi,

I want to hide/ remove Assign To me and Launch WebDynpro button and View All Time Approval link from portal UWL.

please let me know how to do this without any code change in XML .

Accepted Solutions (1)

Accepted Solutions (1)

former_member182598
Active Contributor
0 Kudos

Hi,

You have got two options, if you want to remove it for all the Tasks, you can put the action name in Actions to Exclude iView property

Refer

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/09/6d6b17b29b4eef83a553acaa52f668/content.htm

To determine what should be the action name

1. Navigate to System Administration ->System Configuration ->Universal Worklist and Workflow ->Universal Worklist Administration

2. Open the Tray for the Optional UWL Service Configuration

3. Edit and set the Display Support Information: to true.

Now go back to your UWL page and you should be able to see the Task related information.

You need to make note of the Action Names which you want to hide.

To hide the Action for a particular task, you need to modify the corresponding XML file.

For example to hide followup button you will have to add something like

<ItemType name="uwl.task.webflow.TS90000143.SAP_ECC_HumanResources" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchIView" executionMode="pessimistic">

<ItemTypeCriteria systemId="SAP_ECC_HumanResources" externalType="TS90000143" connector="WebFlowConnector"/>

<Actions>

<Action name="followUp" handler="dummy">

<Properties>

<Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>

</Properties>

</Action>

</Actions>

</ItemType>

Answers (1)

Answers (1)

former_member194211
Contributor
0 Kudos

Hi,

You can acheive this by doing the configuration, please follow below UWL guide.

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8b...

Thanks.

Sushil