<?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>Auto closing tasks</title><link>https://community.appian.com/discussions/f/general/39852/auto-closing-tasks</link><description>Hello guys, I wanted to ask if there is any way in appian to execute a process if no action was taken after a certain period of time. My scenario is very simple. I do have a process model that updates the task status to completed through a script task</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152110?ContentTypeID=1</link><pubDate>Tue, 21 Oct 2025 09:26:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:663162e5-b9fb-4537-9fcb-0ca6cbe7ef02</guid><dc:creator>elvisb958752</dc:creator><description>&lt;p&gt;Yes, your solution seems about correct, about the last part, I just need the process to start on a timer, like u mention something that autoruns on a daily basis, without any user interaction. I see now that you can do that by simply setting up a timer to the start event of the process model. Thanks for your suggestion &amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152074?ContentTypeID=1</link><pubDate>Fri, 17 Oct 2025 15:26:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4b2d8b6a-7a78-4409-bdb5-b19db112e37a</guid><dc:creator>venkatrea696188</dc:creator><description>&lt;p&gt;Correct me if i am wrong .You want to have a process model which needs to trigger on it&amp;#39;s own and update the status as completed for any records/tasks which didn&amp;#39;t have any updates for couple of days (I hope you have different PM&amp;#39;s for user to update those)??&lt;/p&gt;
&lt;p&gt;If that&amp;#39;s the case, isn&amp;#39;t it straight forward. Have a Schedular Process model which runs on daily base (it&amp;#39;s up to you) which queries records based on updated time (get all the records which didn&amp;#39;t get updated in last 2 days)&amp;nbsp; and update the status and write it to DB.&lt;/p&gt;
[quote userid="302119" url="~/discussions/f/general/39852/auto-closing-tasks"] no action/button click[/quote]
&lt;p&gt;This part is bit confusing to understand , button click that means we thought it&amp;#39;s an input task so we will suggest exceptions. Could you explain more about your requirement (any screenshots would be helpful)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152065?ContentTypeID=1</link><pubDate>Fri, 17 Oct 2025 11:24:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2b8d92c8-12df-496f-ae8d-99643111d814</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;If process has a task active then Exception path is the way to go!&lt;/p&gt;
&lt;p&gt;You can configure Exception Path which basically times out the user input task. If user doesnt complete the task before Timer is triggered the system executes the Exception path. Generally I configure 1 hour timer and the exception path can have nodes (email/write records etc) followed by an End node&lt;/p&gt;
&lt;p&gt;For your use case you can setup the write records node in the exception path which will update status to Completed and Ends the process.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1760700253187v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;If you dont have any active process and you want the system to change status to complete after few days depending on some value/status then you need to setup the process model as a Daily running batch job. Basically have the process get the cases you want to mark Complete and then update all the cases which fulfill the criteria. If on a given day no such cases are found process should end otherwise should update status and notify users as needed.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152064?ContentTypeID=1</link><pubDate>Fri, 17 Oct 2025 11:23:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:638cd37b-bcc2-46fc-b638-10feba8ed297</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Add a parallel gateway after the user input task.&lt;br /&gt;Path 1: Normal user completion.&lt;br /&gt;Path 2: Timer event set to 2 days -&amp;gt; Script task updates status, writes records, sends email -&amp;gt; Terminate event.&lt;br /&gt;&lt;br /&gt;This timer path will auto-complete the task without user interaction after 2 days, effectively handling timeout scenarios in parallel to user actions.&lt;br /&gt;&lt;br /&gt;Explained it properly in this link&amp;nbsp;&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/25.3/Process_Node_and_Smart_Service_Properties.html#exceptions-tab"&gt;https://docs.appian.com/suite/help/25.3/Process_Node_and_Smart_Service_Properties.html#exceptions-tab&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152063?ContentTypeID=1</link><pubDate>Fri, 17 Oct 2025 11:15:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d99e5d72-5a4e-4667-a83b-4f1b3865e283</guid><dc:creator>elvisb958752</dc:creator><description>&lt;p&gt;I understand, but I simply want the&amp;nbsp;task to be completed without any user interaction. Correct me if I&amp;#39;m wrong, but the scenario you provided suggests that the user needs to instigate the process 1st before the exception rule takes place.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152062?ContentTypeID=1</link><pubDate>Fri, 17 Oct 2025 11:11:40 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9a398c18-7ce1-40c8-9ae0-31df9060a601</guid><dc:creator>elvisb958752</dc:creator><description>&lt;p&gt;For this scenario to work it would need the user to click on the button action that triggers the process model, which is not what I want. And as it is explained on the link that you provided you cannot setup exceptions on events.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152059?ContentTypeID=1</link><pubDate>Fri, 17 Oct 2025 10:56:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:061795a1-73bf-439b-8376-a4bd0937c051</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Use an escalation timer on the user input task to auto-complete and send the email after the set time.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/25.3/Process_Node_and_Smart_Service_Properties.html#exceptions-tab"&gt;Exceptions tab&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Auto closing tasks</title><link>https://community.appian.com/thread/152058?ContentTypeID=1</link><pubDate>Fri, 17 Oct 2025 10:54:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b27da74d-b5a7-4efa-90b3-a282799735e5</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;This is what exceptions in user input tasks are made for.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/25.3/Process_Node_and_Smart_Service_Properties.html#exceptions-tab"&gt;https://docs.appian.com/suite/help/25.3/Process_Node_and_Smart_Service_Properties.html#exceptions-tab&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>