I want a process to start every 5 minutes and only if a condition is true. if the condition is represented by the value of a boolean constant, it works, but i the condition is a result of a rule it doesn't work.
Maybe it's not possible to set the start of a process this way?
Thanks in advance to anyone who wants to answer me
Discussion posts and replies are publicly visible
Start node events and their conditions, are evaluated only once when deployed. That's a know behaviour and well discussed and documented.
In your case, just start the process, and add a XOR after the start node which then checks your fully dynamic condition.
Thanks Stefan