I have a user decision task defined in a workflow with three options (essentially, approve, reject, and revise) that is working fine. We need to be able to require user notes/comments/memo when the work item is either rejected or revised. I have found UWL XML configurations on the web to accomplish this, but none of them are working. I started with the revise option, however I am still able to revise the work item without entering anything in the text box. I have included my UWL XML configuration sample below.
Any help would be very greatly appreciated.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'>
<UWLConfiguration version="1.0">
<ItemTypes>
<ItemType name="uwl.task.webflow.decision.TS90510014.R3Q300" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
<ItemTypeCriteria externalType="TS90510014" connector="WebFlowConnector"/>
<CustomAttributes>
<CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
<Attribute name="Notif_number" type="string" displayName="qmnum"/>
</CustomAttributeSource>
</CustomAttributes>
<Actions>
<Action name="launchUrl" groupAction="" handler="UrlLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes">
<Properties>
<Property name="url" value="https://HOST/path/default.aspx?"/>
<Property name="notif" value="${item.Notif_number}"/>
</Properties>
<Descriptions default="Display Form"/>
</Action>
<Action name="revise" groupAction="yes" handler="UserDecisionHandler">
<Properties>
<Property name="decisionKey" value="3"/>
<Property name="UserDecisionNote" value="mandatory"/>
</Properties>
</Action>
</Actions>
</ItemType>
</ItemTypes>
</UWLConfiguration>
Edited by: bfcoll0 on May 13, 2011 3:02 PM