02/03/2023 04:10 AM
Hello,
We have a usecase to send approval to risk owner.
On the WF we observed that SoD owner block only works for Serial WF. And we are using Parallel WF.
Is there any way to achieve this on the Parallel WF
We have tried adding custom assignment block with the following query
select username as ID from users where userkey in (select owneruserkey from riskowners where riskid = ${RISKID})
But We are unable to achieve this.
Do let us know if there is a dynamic attribute to get risk id or any other way to achieve our usecase?
Solved! Go to Solution.
02/03/2023 12:20 PM
use below block
SODViolation.get('1') > 0
SODViolation.get('2') > 0
RISK_PRIORITY_CRITICAL = 3
RISK_PRIORITY_LOW = 2
RISK_PRIORITY_High = 1
RISK_PRIORITY_Medium = 0
02/05/2023 11:07 PM
Hi Rushikesh,
Thanks for the response.
We tried using SOD Owner Block but that works only for Serial WFs.
Is there any way we can do similar function using custom assignment block in parallel wfs?
Thanks
02/06/2023 05:58 PM
You need to use Custom Query block
use request_exceptions table & output of query should be userkey
02/13/2023 06:37 AM
Hello Rushikesh,
Thanks for the help.
we tried making query based on request_exceptions and we were able to make this functionailty
Thanks
02/14/2023 08:18 PM
@GarimaMandhyani can you please share the query here? This would be helpful for other folks.
02/05/2023 09:04 PM
As per saviynt : https://docs.saviyntcloud.com/bundle/EIC-Admin-v231/page/Content/Chapter12-Workflows/Workflow-Compon...
SOD Owner Approval : Its applicable for Only for Serial Workflows
02/05/2023 11:09 PM
Thanks Manu For the response.
We have already gone through the documentation, and looking for a way to redirect the WFs to sod owners in Parallel Wfs.
Is there any way or possible workaround?
Thanks