Retriggering the project within itself

Different methods can be used for this.

1- You can reschedule the process with the scheduled process component. (Be careful as this method may loop endlessly. So, it may be necessary to set a count and not trigger it again when this count is, for example, 2.)

2- You can call the same process with call activity inside your process. (Be careful as this method may loop endlessly. So, it may be necessary to set a count and not trigger it again when this count is, for example, 2.)

3- While scheduling the process from the Scheduler, you can trigger the same process in case of success or failure from the post process.