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

requestedby.secondarymanager

JPMac
Regular Contributor
Regular Contributor

When we create a user from the user registration form, we need to check if the requestor's secondarymanager is blank.
So we created the following wf:

JPMac_0-1702988423428.png

condition : requestedby.secondarymanager != null

But this wf is not working.
What should I need to change?

By the way, the documentation below states that requestedby can be used.

JPMac_1-1702988913372.png

https://docs.saviyntcloud.com/bundle/EIC-Admin-v23x/page/Content/Chapter12-Workflows/Workflow-Compon...

4 REPLIES 4

SumathiSomala
All-Star
All-Star

@JPMac Try

(requestedby.secondarymanager !=null)

 

Regards,
Sumathi Somala
If this reply answered your question, please Accept As Solution and give Kudos.

rushikeshvartak
All-Star
All-Star

requestedby.secondaryManagerId


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

sk
All-Star
All-Star

@JPMac Use this: requestedby.secondaryManager != null


Regards,
Saathvik
If this reply answered your question, please Accept As Solution and give Kudos to help others facing similar issue.

JPMac
Regular Contributor
Regular Contributor

@sk 

Thanks for your advice. We accept your idea as solution.