Hi. This is the problem: The system must send automated reminders to clients if a proof of payment is not attached at least 2 days before their booking date (the day they visit the hospital)
How do I implement this process so that it runs daily at midnight and checks all bookings without a proof of payment that are due in 2 days time from today and send the email.
Thank you
Hi Rudo,
You can do this in two ways:
Regards,
Daniel
Hi RUDO MURIEL MUNYAVI,
I can see two ways of doing what you want:
The first option is more ad-hoc and quicker to implement. The second is probably more complete, and better in the long term, in that you model the entire process, but will require you to learn BPT (Business Process Technology, OutSystems approach to Business Process Modeling), and have a well defined process in your organization.
Hope this helps!
Hi. Thank you for the answers, I chose option 1. So the timer is triggering the process. However I am stuck on Input parameters. My process requires the name and email address and from the trigger I can't add input parameters on timers which I will pass from the process. screenshot attached
Please use timer and process activity which helps to reslove the issue:
Timer will help you to trigger the application exact timing as you expected.Better set the duration time in service center
Process will help you to trigger the exact action will perform during that time but even action will trigger using timer as well.
Ganesh kumar.C
Supposing you have all the data in an entity, in the timer you add an aggregate and process each record returned from the aggregate 1 by 1 to sent the email.