Karlis Filipsons
Karlis Filipsons

Reputation: 135

Non-interrupting timer boundary event creates multiple tasks

I need to create a system that reminds a user 3 times to do a task via email. I added the email class to task listener on assignment.

This step doesn't work because it creates 3 more new tasks. The interrupting timer event doesn't also work because it cancels the task and the user receives dead links to the task in an email.

I need this to work in a way that only the one instance of the task is running and is canceled only after the 3 loops.

enter image description here

Upvotes: 0

Views: 1206

Answers (1)

Greg Harley
Greg Harley

Reputation: 3240

How about somethign like this? Use a regular system task to send email notification called first when the user task is called (parallel gateway).

Then call the same task in timer (repeat twice).

Hope this helps, Greg

Upvotes: 1

Related Questions