How can I add Dynamic Approvers through Flow designer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2022 02:27 AM
I have a table where i have access and its approvers......now the SC task is created with the Access in the short description I need to add the Approvers in SC Task's Dynamically...
CAn i achieve this using Flow Designer....
- Labels:
-
Scoped App Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2022 02:35 AM
Hi
the solution for your question is described in the following great article: Scripted Approvals in Flow Designer with Flow Variables
Kind regards
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2022 03:34 AM
Thank you Let me try this and get back ...Thanks for your response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-07-2023 12:03 AM
Yes, Its possible to pass dynamic approver.
I have attached one example for change table. Please replace change request to scTask.
Please replace the above method "ApprovesRejectsAnyU" as per your requirement, based on number of user to approve.
| Approved by any User | ApprovesAnyU[user_sys_id,user_sys_id] |
| Approved by 50% of Group | Approves50%G[group_sys_id] |
| Approved by 2 of Users or of Group | Approves2#U[user_sys_id,user_sys_id]G[group_sys_id] |
| Rejected by all Users | RejectsAllU[user_sys_id,user_sys_id] |
| Rejected by any user in Group | RejectsAnyG[group_sys_id,group_sys_id] |
| Approved or Rejected by any User | ApprovesRejectsAnyU[user_sys_id] |
| Approved by Group or Rejected by any User | ApprovesAnyG[group_sys_id]OrRejectsAnyU[user_sys_id] |
| All responded and anyone approves in Group | ApprovesResG[group_sys_id] |
