I improperly posted this in KM and Collaboration last month. Maybe someone here can help?
Hello Everyone,
I am working on a problem at the moment and maybe someone here can help me. I had been trying to open decision work flows in the backend (R3) instead of them opening in the UWL in the viewDetail view. The xml entry responsible for this is:
<ItemType name="uwl.task.webflow.decision.TS99900195.SCEM100" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
<ItemTypeCriteria systemId="SCEM100" externalType="TS99900195" connector="WebFlowConnector"/>
</ItemType>
I am able to sucessfully change this to have the workflow opened in the backend with the following snippet:
<ItemType name="uwl.task.webflow.TS99900195.SCEM100" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchSAPAction" executionMode="default">
<ItemTypeCriteria systemId="SCEM100" externalType="TS99900195" connector="WebFlowConnector"/>
<Actions>
<Action name="launchSAPAction" handler="SAPTransactionLauncher" referenceBundle="launch_sap" launchInNewWindow="yes" launchNewWindowName="_blank" launchNewWindowFeatures="resizable=yes,scrollbars=yes,toolbar=no,menubar=no,top=0,left=0,height=720,width=1024">
<Properties>
<Property name="task" value="yes"/>
<Property name="GuiType" value="WinGui"/>
<Property name="TransactionCode" value="SWK1"/>
</Properties>
</Action>
</Actions>
</ItemType>
What I would like to do, but have not accomplished is to open all of the decision type tasks in the above mentioned way. What do I have to change in the xml snippet above to have all the decision type workitems open in the backend system? I have tried the following and it also didn't work:
<ItemType name="uwl.task.webflow.decision" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchSAPAction" executionMode="default">
<Actions>
<Action name="launchSAPAction" handler="SAPTransactionLauncher" referenceBundle="launch_sap" launchInNewWindow="yes" launchNewWindowName="_blank" launchNewWindowFeatures="resizable=yes,scrollbars=yes,toolbar=no,menubar=no,top=0,left=0,height=720,width=1024">
<Properties>
<Property name="task" value="yes"/>
<Property name="GuiType" value="WinGui"/>
<Property name="TransactionCode" value="SWK1"/>
</Properties>
</Action>
</Actions>
</ItemType>
Thanks in advance
Paul