Hi Experts,
Good Morning ! Need your help on one issue.
We have EP 7.3 SP4 and we are using UWL and have SRM/ECC systems in landscape.
Now we have some PO in ecc and this PO comes in UWL in EP for approval & rejection.
So once the PO comes to UWL, user will click on the workitem and userdecision handler is launched and
screen with approve and reject button will come.
Now the requirement we have is , say for example, if the PO is already is edit mode in backend and being used by some other user say User A,
so when some other person userB tries to view the PO in EP , it should display PO is locked by by userA
There is some enqueue-dequeue process in backend , however this message ' PO is locked' is not getting displayed in EP.
Patch levels for EP and ECC are same and we have UWLJWF component etc.
sample code in uwl.standard.xml to launch this task and userdecision handler / screen :
<ItemType name="uwl.task.webflow.decision.TS99800043.SAP_ECC_Procurement" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
<ItemTypeCriteria systemId="SAP_ECC_Procurement" externalType="TS99800043" connector="WebFlowConnector"/>
<Actions>
<Action name="Approve" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="yes" launchInNewWindow="no">
<Properties>
<Property name="decisionKey" value="001"/>
<Property name="System" value="SAP_ECC_Procurement"/>
</Properties>
<Descriptions default="Approve"/>
</Action>
<Action name="Reject" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="yes" launchInNewWindow="no">
<Properties>
<Property name="decisionKey" value="002"/>
<Property name="UserDecisionNote" value="mandatory"/>
<Property name="System" value="SAP_ECC_Procurement"/>
</Properties>
<Descriptions default="reject"/>
</Action>
</Actions>
</ItemType>
Do we need to change some GroupAction , execution mode ( optimistic/pessimistic ) ?
Can you help me on this issue and let me know your thoughts on this...
Thanks & Regards
Sai