how i can check in flow designer for manager of manger approval
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-16-2023 02:59 AM
I want to send an approval in flow designer if requester is not the manager of requested for and also want to check if manager is not active then it should check manager of manager with active state in loop and again if manager of manager is not active then it check for next level.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-16-2023 03:30 AM
Dear @padma devi
I believe your flow designer is.working on the table from there you will get a value of requestor.
Check in the IF condition
If (Requestor_For.manager is not empty && requestor_for.manager.active == true)
SendApproval
Else if(
Requestor_For.manager.manager is not empty && requestor_for.manager.manager.active == true)
SendApproval
- Kailas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-16-2023 03:53 AM
Hi,
Thanks for the solution but i want it in loop, here for the conditon
"Requestor_For.manager.manager is not empty && requestor_for.manager.manager.active == true"
if active is false then it will not run for next manager level approver.
I want to check for next level until both condition true if false then it should check next level manager.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-16-2023 04:06 PM
Dear @padma devi
You have to write a logic do while and execute the script until active = false. If you want to check next record skip the active = false record and go to next record to execute
- Kailas