Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Work flow modification

Israr
New Contributor II
New Contributor II

Hello Team,

Just need help in Preparing the if else condition to check in Workflow if the group owner raising request for self or for some other group owner for the requested application then the request should go for Requestor manager approval.

can you help us how we can achieve this in workflow.

Thanks!

Regards,

Israr Ahmed M

6 REPLIES 6

Hsoumare
New Contributor III
New Contributor III

Hi Israr,

Could you please share more details about the use cases you want to implement ?

Regards
Harouna SOUMARE
If this reply answered your question, please Accept As Solution to help other who may have a same problem. Give Kudos 😉

rushikeshvartak
All-Star
All-Star

Use custom assignment block with custom query into it

select userkey from usergroup_users where USER_GROUPKEY =10 and ${ARSRQUEST.REQUESTOR} not in (select userkey from usergroup_owners where USERGROUPKEY=10)
union
select manager as userkey from users where userkey=${ARSRQUEST.REQUESTOR} and ${ARSRQUEST.REQUESTOR} in (select userkey from usergroup_owners where USERGROUPKEY=10)


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

Israr
New Contributor II
New Contributor II

Hello Rushikesh,

Thanks for your respond!,

But we are using common workflow for different logical application hence we cannot use specific user_groupkey here.

For one application the above solution is fine but for multiple logical application?

Thanks!

Regards,

Israr Ahmed M

You can store in endpoints customproperty and use in worflow for testing go with above one


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

Hello Rushikesh,

Can you help how can i store in endpoints custom property?

Thanks!

Regards,

Israr Ahmed M

In any Customproperty and then you can use in query dynamic variable 

rushikeshvartak_0-1703197217849.png

 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.