cancel
Showing results for 
Search instead for 
Did you mean: 

Customize UWL completed task detail view

Former Member
0 Kudos

Hi,

I have successfully configured the new and in progress task detailed view. It is launching a Web Dynpro for Java application that processes the workitem.

I would like to do the same for the completed tasks. My XML source code is:

<ItemType name="uwl.completedtask.webflow.TS90000009" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
            <ItemTypeCriteria externalType="TS90000009" connector="WebFlowConnector"/>
            <Actions>
                <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
                    <Properties>
                        <Property name="WebDynproApplication" value="Histo"/>
                        <Property name="WebDynproDeployableObject" value="cust/histo"/>
                        <Property name="DynamicParameter" value="WI_ID=${item.externalId}"/>
                    </Properties>
                    <Descriptions default="launchWebDynPro"/>
                </Action>
            </Actions>
        </ItemType>

With this code, when the user clicks on the completed task link, it still opens the standard view. I have cleared the cache and register my XML file with high priority, but it did nothing. Am I missing any steps ?

Thanks in advance for your help.

Thibault

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hello Thibault,

the problem is in the name of defaultview in the first line of your XML settings.

It should be:

defaultView="WorkItemsCompletedView" ( instead of defaultView="DefaultView" )

Roman