<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Not able to start the process in 5 mins interval</title><link>https://community.appian.com/discussions/f/process/39757/not-able-to-start-the-process-in-5-mins-interval</link><description>Hi all, 
 
 I have a requirement where I need to call a process model in every 5 mins. Also if the minutes are in 5 series like 05, 10, 15... then only further process need to be executed. If I have started the process model at 9&amp;quot; 31 AM&amp;quot; then it should</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Not able to start the process in 5 mins interval</title><link>https://community.appian.com/thread/151686?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2025 13:51:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:13d26449-9507-4d36-9613-acce85d2c4dd</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Since you see only 1 parent process, the timer is firing correctly. The issue is inside your process flow.&lt;br /&gt;As i don&amp;#39;t have full vision to your problem i can guess,&lt;br /&gt;Script Task Get List Process to Trigger From Sc...&amp;nbsp;returning different sized arrays based on execution context (timer vs manual). - You can validate this in monitoring and try to fix that because timer based process works in context of System and Manually with your user.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to start the process in 5 mins interval</title><link>https://community.appian.com/thread/151685?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2025 12:46:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:10565dd3-bc86-4669-91b5-a9d666f84ffd</guid><dc:creator>vijayan544557</dc:creator><description>&lt;p&gt;Also this is happening only when process model is automatically triggered after 5 mins. When I manually trigger it.. It behaves properly.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to start the process in 5 mins interval</title><link>https://community.appian.com/thread/151684?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2025 12:44:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:889bf97e-0747-4c3b-9120-c444ba3e7c97</guid><dc:creator>vijayan544557</dc:creator><description>&lt;p&gt;Thanks for your reply Shubham.&amp;nbsp;It is working now&amp;nbsp; It is getting triggered in each 5 mins interval. Below is my process model and facing another issue now&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1758543118844v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I am getting the schedules dynamically. for example - at 11:45 I have to execute 5 processes - Process 1, Process 2. I am getting that list along with UUID (UUID i have stored in DB). Now when it is 11:45 the start process node gets executed and shows&amp;nbsp;2 instances. But when I check in monitoring tab it shows me double instances. in this case 4 instances Sharing below MNI setup.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1758543304810v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1758543376458v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In monitoring tab-&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1758545052941v4.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Anything I am missing here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Not able to start the process in 5 mins interval</title><link>https://community.appian.com/thread/151683?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2025 11:48:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8dd1c51a-8edf-41b4-826a-d439b4952a27</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Issue with you delay code, datetime values when local!minuteNow + local!extraMinutes exceeds 59.&lt;br /&gt;The datetime() function will error because 60 minutes is invalid.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;now() + intervalds(0, if(mod(minute(now()), 5) = 0, 0, 5 - mod(minute(now()), 5)), 0)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;if above will not work try this&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!now: now(),
  local!minuteNow: minute(local!now),
  local!extraMinutes: if(
    mod(local!minuteNow, 5) = 0,
    0,
    5 - mod(local!minuteNow, 5)
  ),
  a!addDateTime(
    startDateTime: datetime(
      year(local!now),
      month(local!now),
      day(local!now),
      hour(local!now),
      0,
      0
    ),
    minutes: local!minuteNow + local!extraMinutes
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>