Can I programmatically stop a timer that run every x minutes

Hi everybody,

if I have a timer that runs often. Let’s assme that this is not necessary after X runs a day where X can be different every day. Can I stop it automatically?

Thank you in advance for your wisdom.

Regards, Joerg

Hello @Jorg_Beyer

In the timer logic, do you have access to the X? If so, based on the values of the X, you can make an early exit from the logic without executing it. You don’t need to stop the timer.

Regards

That’s the way I do it right now. I stop the execution if there is no need to execute the logic.
Ok, thank you for confirming that this is the right way of doing it.

Regards, Joerg