Start event timer

Hi All,

I have a requirement that process need to scheduled to run on Jun 2nd every year, so I have used start event timer and configured timer recurrence as 'Yearly' and June 2nd.

But system triggers the process on every month 2nd, let say today Jan 2nd. can any one suggest is there any configuration missed here?

Appian version in 16.2

FYI, I have tried in 18.3 Appian cloud version, it is also have same behaviour.

 

 

Thanks.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    A Score Level 2
    in reply to Venu
    Hi Venu,

    I am not sure what is causing the timer to trigger every month Instead of specified time, but as a work around you can orchestrate your process model so that it will work as per your requirements.Let your process run 2nd day of every month and add one XOR condition to check if the current day is 2nd and current month is June or not. If these 2 conditions are met ,then your process will perform a particular task(may be update some records) else process will end.

    You may use below logic in XOR gateway:

    and(month(today())=6,day(today())=2)

    Thanks
Children