Hello Sam,
thank you for the reply.
Considering the case you are talking, supposing that JOB_A,..,JOB_N are prerequisites for JOB_Work, and this one is scheduled at 9.30, JOB_Work doesn't start when all prerequisites are meet, but just at 9.30.
I would like to start JOB_Work when all prerequisites are meet AND ALSO at 9.30. Something like:
- WHEN (JOB_A is true AND ... AND JOB_N is true) OR (TIME = 9.30) THEN START JOB_Work.
So, if all condition JOB_A,..,JOB_N are meet at 4.30, the JOB_Work must start at 4.30. But it has to start also at 9.30.
As i said is possible with the creation of a new "JOB_scheduled" and put this one as a new prerequisiste in OR condition, but i was asking if possibile to do this without create a new "JOB_Scheduled".
Thank you again,
Stefano