We have a process model with the start event with the trigger set to a timer. (

We have a process model with the start event with the trigger set to a timer. (only 1 timer) The Timer Recurrence is set to Daily (every weekday) with 1 minute delay at 10:00 am = pm!timezone.

The 10:00 am value is provided via a constant with a Time data type.

With these settings, the process models fires off at 4:25PM Pacific time every day. The process model timer seems to be ignoring changes to the constant value. Any advice on how we should set this up the timer event to trigger the process model at 5 a.m. EST?

...

OriginalPostID-37226

OriginalPostID-37226

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    If I remember correctly, the process reads the constant value each time it runs - so, if you initially set the constant to 10 am, the process will initially run at 10am. However, if you then change the constant to 11am, the process will next run at 10am (ie not when you're expecting) - but in doing so will read the new constant value, so the run after that will be at 11am.

    To summarise - the change in constant value is only actually reflected in the second run of the process after you've changed the constant value. This might explain the behaviour you're seeing where the process appears to ignore changes to the constant's value.

Reply
  • 0
    Certified Lead Developer

    If I remember correctly, the process reads the constant value each time it runs - so, if you initially set the constant to 10 am, the process will initially run at 10am. However, if you then change the constant to 11am, the process will next run at 10am (ie not when you're expecting) - but in doing so will read the new constant value, so the run after that will be at 11am.

    To summarise - the change in constant value is only actually reflected in the second run of the process after you've changed the constant value. This might explain the behaviour you're seeing where the process appears to ignore changes to the constant's value.

Children