Routing Problem

Hey I am having 2 process called Cashier and Payment. I am routing the Approval/Rejection step of Cashier process to a Work queue Cashier@ABC. But my problem is to route Enter Payment Details step to the same person who approved above. How can I acieve this? (I tried current operator but it is not taking the same person.)

@Mohamed_Akeel

As per the problem statement you are routing the approval to work queue. The operator who has access to that workqueue can open that assignment can approve / reject it. Let’s the operator approves it. In the cashier flow, after the approval shape there is a connector to the end shape. On that connector, try to add a data transform with when condition (pyapproval==true) and set the approval operator I’d to a property on the pyworkpage or some page (based on your convenience). Then use that property in the routing details of the assignment in the second flow.

@P.Siva.Praveen I got the value of a property. But how can I route the 2nd flow step using this property? I am unable to see this property in the routing.

@Mohamed_Akeel

Let’s say you have the operator property on the pyWorkPage. Double click on the assignment (enter payment details) shape in the second flow (payment) and there you need to select the operator in the route To dropdown and username.

Refer to the pyworkpage. which has the operator.

If you set the operator property on a page other than pyWorkPage. You need to define that page in the pages and classes of the flow rule. Then refer like as above (.)

@P.Siva.Praveen Hi I used the business logic and used that property to route using a decision tree. Thank you.