Mail
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-19-2024 01:37 AM
Catalog item is requested by the Requestor . Then it goes to approval to the requestor's manager if he approves then it is closed and completed , if he is not approved even after 3 days the mail should be sent to the manager on the 4th day ,Even he is not approved on 4 th day the mail should be sent on 5 th day and 6 th day also , If he is not approved in 6 days then it is cancelled
Need to acheive in flow design
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-19-2024 01:51 AM
It can do easily in Flow Designer.
https://www.youtube.com/watch?v=hVctTUMWIcs
Via WORKFLOW
Similar use case.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-19-2024 01:54 AM
One of the approaches could be as follows:
- Have one flow that has the logic for approval and rejection of the request.
- Have a second scheduled flow that triggers every day.
- You look up all requests which are in the approval state "requested".
- You loop through the records and calculate the duration based on the opened_at value
- You create if-else blocks. For e.g. if (duration == 4 days){// send notification}else if (duration == 5 days){// send notification}else{ // cancel request}
This can be achieved in the flow via the OOB action and flow logic components or you can have a custom action component with a script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-19-2024 01:57 AM
Do you have the flow
Can you share the flow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā01-19-2024 01:59 AM
Check thsi
Trigger
Scheudule
Action
Look up records
with conditions
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************