Send Email alter or show alert on screen remind
Answers
-
Email Reminders
What you are looking to do is not natively available in the Anaplan platform today. There are two similar open Ideas around this topic that I'd recommend you kudo and subscribe to:
- https://community.anaplan.com/t5/Idea-Exchange/Automated-Email-Notification-Capability/idi-p/59602
- https://community.anaplan.com/t5/Idea-Exchange/Email-notifications-Sending-Email-Actions-without-using-mailbox/idi-p/36938
There is also workflow functionality on the platform roadmap, with a plan to include reminder emails.
In the meantime, if you have programming capabilities in-house, it may be possible to script a solution that meets your need. You can see this article for an example of combining Anaplan Connect with an email script.
The basic flow of your script would be:
- Build logic into your model that compares the current date with the cycle end date, and determines if a reminder needs to be sent.
- Use Anaplan Connect to push the current date into the model.
- Use Anaplan Connect to pull the Boolean flag that determines if an email needs to be sent.
- [Optional] Use Anaplan Connect to pull the list of users that the email should be sent to.
- Iterate through the list of users that need to receive the email, and send the email via an emailing library.
You would run this script on a daily schedule.
Page Alerts
Similarly to above, you can schedule a script that pushes the current date into the model daily. Then, you build logic into your model to determine if an alert needs to be displayed on a page. Then you can use something like an image card and/or conditional formatting to display a noticeable alert message on the top of the relevant pages.
1