Click HERE to see how Saviynt Intelligence is transforming the industry. |
06/30/2022 03:40 AM
Hi,
We have a requirement to send the approval to requestor's manager. We can do it via custom query in Workflows but how to fetch the requestor's manager so that the approval can be sent.
Thanks!
Solved! Go to Solution.
06/30/2022 05:09 AM
Tried like this
select u.manager as userkey from users u where u.username = '${requestedby.username}'
06/30/2022 05:17 AM
select manager as userkey from users where userkey =${ARSREQUEST.requestor}
08/15/2022 06:49 AM
@km Does above solution worked if yes you can mark working solution as accepted 🙂
09/20/2022 02:32 PM
@rushikeshvartak : For requestee's manager i used
select manager as userkey from users where userkey =${ARSREQUEST.requestee} and it didnt seem to work.
When a user selects "Request Access for Others", in that case the requestor is someone else (requestee) and the approval should go to their manager. Any ideas?