Hi All,
NW 7.31 SP 6. Ehp5 MSS add on 1.0
We have a requirement that when an employee creates an expense using the new travel work center, that this will appear in the expense approvers UWL and when they click on the task, the travel approval application will be launched.
This is what I have done so far:
1. Created an event in bus2089 and raised this event on save of an expense.
2. Created a workflow which is lnked to this event. This workflow has one task in it.
3. Added this config to uwl xml:
<ItemType name="uwl.task.webflow.TS99500759.SAP_ECC_HumanResources" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
<ItemTypeCriteria systemId="SAP_ECC_HumanResources" externalType="TS99500759" connector="WebFlowConnector"/>
<CustomAttributes>
<CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalObjectId" objectType="WebflowContainer" cacheValidity="final">
<Attribute name="REQUESTID" type="string" displayName="Request ID"/>
</CustomAttributeSource>
</CustomAttributes>
<Actions>
<Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=no,directories=no">
<Properties>
<Property name="WebDynproApplication" value="FITV_POWL_APPROVER"/>
<Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=no,directories=no"/>
<Property name="DynamicParameter" value="WI_ID=${item.externalId}"/>
<Property name="openInNewWindow" value="yes"/>
<Property name="WebDynproNamespace" value="sap"/>
<Property name="System" value="SAP_ERP_HumanResources"/>
</Properties>
<Descriptions default="Display Details of Trip"/>
</Action>
</Actions>
</ItemType>
So when an expense is created, teh workflow is kicked off and an item does indeed appear in the approvers inbox. However, it does not launch the application as I would expect. Instead this is what I get:
Anyone have any ideas on what I'm doing wrong?
Many thanks in advance,
Liz.