<?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>Process - Recent Threads</title><link>https://community.appian.com/discussions/f/process</link><description>Questions for process related design items</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/155025?ContentTypeID=1</link><pubDate>Mon, 29 Jun 2026 05:32:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8fa38fda-deda-4c3f-814d-2c4e8a3d484e</guid><dc:creator>rameshm587235</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/155025?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/IMG_5F00_0328.jpeg" /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/IMG_5F00_0327.jpeg" /&gt;Hi Mayank,&lt;/p&gt;
&lt;p&gt;Hope this will help.&lt;/p&gt;
&lt;p&gt;you can filter process with errors as below&lt;/p&gt;
&lt;p&gt;1. create process report (report type-process , all process)&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2. open the process report add columns Num_Active_Task, Num_Problem_Task, ProcessInstanceId as attached&amp;nbsp;&lt;/p&gt;
&lt;p&gt;3. use that report in query process analytics to filter processstatus is active and&amp;nbsp;&lt;span&gt;Num_Active_Task=0&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;This will return&amp;nbsp;errored process.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;In some scenarios, process instances would have been paused ,say if pause on error is &amp;nbsp;selected as true in write records and&amp;nbsp;write records failed, in this case instance status is paused and unattended error task (write records), you can try filter by&amp;nbsp;adding additional or condition in query filter like processstatus is paused and(or) Numb_Problem_Task &amp;gt; 0 to check if this works.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Additionally, you can add column Proceess Variable pv!ErrorDetail in your process report and if process variable stored error when error occurred in your process model then you can utilise it here to track error detail and take action based on it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;however, if your process model handled exception with exception handler error task(suppose assigned to &amp;lsquo;Technical Support&amp;rsquo; group) then this will not appear in this report as there is active exception task for&amp;nbsp;Technical Support group.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;in this case,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;1. create process report (report type-task , all task)&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;2.&amp;nbsp;&lt;/span&gt;open this process report add columns TaskId, ProcessInstanceId, TaskAssignees as attached&amp;nbsp;&lt;/p&gt;
&lt;p&gt;3.&lt;span&gt;use that report in query process analytics to filter taskstatus&amp;nbsp;is assigned, accepted&amp;nbsp;and(or) TaskAssignees=&amp;lsquo;Technical Support&amp;rsquo; and(or)&amp;nbsp;TaskName contains starts with &amp;lsquo;Exception/Error &amp;hellip;&amp;hellip;xxxx&amp;rsquo;(if you followed unique names that exception or error task always starts with Exception&amp;hellip;..xxxxx or Error&amp;hellip;.xxxxx irrespective of different process models or applications)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;This will return process instances which contains exception task with task id.&amp;nbsp; &amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;or&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;you can orchestrate robotic task to login to admin console, check process with errors checkbox in monitor view and the click on view unresolved error which will return a table process instances id with error details that you store it in excel for review or take action based on error suppose want terminate process instance in the flow. But need to analyse the impact on the volume, system load and do in non business hours if suggested&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/40512?ContentTypeID=0</link><pubDate>Wed, 17 Jun 2026 08:03:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9087d9c2-012a-40a9-8ebd-d24fdd16e19f</guid><dc:creator>Mayank_Verma</dc:creator><slash:comments>10</slash:comments><comments>https://community.appian.com/thread/40512?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi Team,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;We have a requirement of querying all processes with an error in our application and send recurring reminder emails to fix that problem (every 5 minutes). Process Report seems to not have such feature. Can anyone please guide on a potential solution here?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154966?ContentTypeID=1</link><pubDate>Mon, 22 Jun 2026 11:52:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b79c3f1c-78c4-47f2-a155-cec5136b8f62</guid><dc:creator>Mayank_Verma</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154966?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Thank you so much for this &lt;a href="/members/bhirundham400974"&gt;Bhirundha&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154960?ContentTypeID=1</link><pubDate>Fri, 19 Jun 2026 11:41:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9805bbbb-b59c-4580-adf7-a2ba6a3515b5</guid><dc:creator>Bhirundha</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154960?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="/members/mayankv557314"&gt;Mayank_Verma&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Please check this plugin:&amp;nbsp;&lt;a href="/b/appmarket/posts/appian-error-function"&gt;Appian Community&lt;/a&gt;, I hope this helps.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to handle service errors in process models</title><link>https://community.appian.com/thread/154949?ContentTypeID=1</link><pubDate>Thu, 18 Jun 2026 08:09:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:949c1912-1ee2-4f2f-85fa-30bf1804ee8b</guid><dc:creator>EREN_YEAGER</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154949?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40511/how-to-handle-service-errors-in-process-models/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p data-path-to-node="2,0"&gt;However, as the OP&amp;#39;s screenshot shows an actual error on the node, the process execution will halt there entirely. While checking the integration response status code is excellent practice for handling API-level failures and informing users, it won&amp;#39;t bypass a hard node error.&lt;/p&gt;
&lt;p data-path-to-node="2,1"&gt;To handle these scenarios, I typically use an &lt;b data-path-to-node="2,1" data-index-in-node="46"&gt;AND gate&lt;/b&gt;&amp;nbsp;at the start to split the process into two parallel paths &lt;span&gt;&amp;nbsp;with a&amp;nbsp;&lt;/span&gt;&lt;b data-path-to-node="2,2,1,0" data-index-in-node="110"&gt;Terminate Process&lt;/b&gt;&lt;span&gt;&amp;nbsp;node (in processes where we know an hard error can appear or we need to monitor it right away)&lt;/span&gt;:&lt;/p&gt;
&lt;ul data-path-to-node="2,2"&gt;
&lt;li&gt;
&lt;p data-path-to-node="2,2,0,0"&gt;&lt;b data-path-to-node="2,2,0,0" data-index-in-node="0"&gt;Path 1 (Normal Flow):&lt;/b&gt; Executes the standard business logic.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p data-path-to-node="2,2,1,0"&gt;&lt;b data-path-to-node="2,2,1,0" data-index-in-node="0"&gt;Path 2 (Timeout/Exception Flow):&lt;/b&gt; Starts with a &lt;b data-path-to-node="2,2,1,0" data-index-in-node="47"&gt;Timer Event&lt;/b&gt; (set to a buffer based on worst case scenario of path 1 execution tim, e.g., 2 minutes), contains email node etc.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p data-path-to-node="2,3"&gt;If Path 1 completes successfully, the Terminate node kills the entire process instance, automatically clearing the active Timer on Path 2. However, if Path 1 gets stuck or errors out, the Timer on Path 2 will eventually expire, allowing the process to continue down an exception route to trigger a support email, log a database entry, or alert the user.&lt;/p&gt;
&lt;p data-path-to-node="2,4"&gt;What Shubham suggested is an absolute best practice that should be implemented in every process involving external systems and integrations.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to handle service errors in process models</title><link>https://community.appian.com/thread/40511?ContentTypeID=0</link><pubDate>Wed, 17 Jun 2026 07:45:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b51a1086-6ac0-4ee8-89b1-304a124cbb3d</guid><dc:creator>Makkena Saikrishna</dc:creator><slash:comments>2</slash:comments><comments>https://community.appian.com/thread/40511?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40511/how-to-handle-service-errors-in-process-models/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1781682242165v1.png" alt=" " /&gt;The code working from long back suddenly one day the integration failed due to service failure how to handle it&amp;nbsp;&lt;/p&gt;</description></item><item><title>Process Model alert send to all admin even it set to specific user</title><link>https://community.appian.com/thread/40510?ContentTypeID=0</link><pubDate>Wed, 17 Jun 2026 03:01:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ff69897a-4176-45b2-84f4-407194f4eae2</guid><dc:creator>Sorasit</dc:creator><slash:comments>4</slash:comments><comments>https://community.appian.com/thread/40510?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40510/process-model-alert-send-to-all-admin-even-it-set-to-specific-user/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I have process model which run subprocess.&lt;br /&gt;Both main and sub process already set alert to specific user.&lt;/p&gt;
&lt;p&gt;However, when error occur on sub process, alert email was sent to&amp;nbsp;all admin in environment (&lt;a id="" href="mailto:admin@xxx.appiancloud.com"&gt;admin@xxx.appiancloud.com&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;Are there any workaround for this issue?&lt;/p&gt;
&lt;p&gt;-----&lt;/p&gt;
&lt;p&gt;Following is main and sub process configuration.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Main Process&lt;/strong&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/pastedimage1781664829216v1.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/pastedimage1781665138961v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Sub Process&lt;/strong&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/pastedimage1781664896380v2.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/pastedimage1781665149942v4.png" alt=" " /&gt;&lt;/p&gt;</description></item><item><title>RE: Process Model alert send to all admin even it set to specific user</title><link>https://community.appian.com/thread/154948?ContentTypeID=1</link><pubDate>Thu, 18 Jun 2026 04:54:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:606a4180-b8aa-4df2-8b87-5bdf0fc0f112</guid><dc:creator>Sorasit</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154948?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40510/process-model-alert-send-to-all-admin-even-it-set-to-specific-user/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hello,&amp;nbsp;&lt;a href="/members/shubhama926776"&gt;Shubham Aware&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;tried to select user within application&amp;#39;s group. And it still alert all administator within Appian environment.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Process Model alert send to all admin even it set to specific user</title><link>https://community.appian.com/thread/154946?ContentTypeID=1</link><pubDate>Thu, 18 Jun 2026 04:46:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9698309c-113d-40a2-8fb0-fe1acf928e17</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154946?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40510/process-model-alert-send-to-all-admin-even-it-set-to-specific-user/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;The alert falls back to all admins when the recipient can&amp;#39;t be resolved&amp;nbsp; i.e. the user is inactive or the value isn&amp;#39;t the exact login username( select them via the picker so the correct username is inserted.)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Process Model alert send to all admin even it set to specific user</title><link>https://community.appian.com/thread/154944?ContentTypeID=1</link><pubDate>Thu, 18 Jun 2026 04:38:10 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:278a1a51-58d9-4960-82d0-1d367d8a9ff3</guid><dc:creator>Sorasit</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154944?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40510/process-model-alert-send-to-all-admin-even-it-set-to-specific-user/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi, &lt;a href="/members/harshas2775"&gt;Harsha Sharma&lt;/a&gt;&amp;nbsp;.&lt;/p&gt;
&lt;p&gt;Based on your suggestion. I already verifed some of it&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Hope the process model is published&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;-&amp;gt; Yes. I already published&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Check if the user is active&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If the user configured in Alert setting is deactivated, all environment admins will be notified.&lt;/p&gt;
&lt;p&gt;-&amp;gt; Yes. Selected user is active&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;strong&gt;3. As per best practice have a group of users configured in alert settings instead of a user.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;-&amp;gt; Even I try to set group that consist 2 user. Alert stil being sent to all administrator in Appian&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4.&amp;nbsp;User&amp;#39;s dont get promoted to higher environments, groups do!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;-&amp;gt; What do you mean by &amp;quot;get promoted to higher environments&amp;quot; ?&lt;/p&gt;
&lt;p&gt;Do you mean &amp;quot;User may not available if I deploy to another environment? (such as from devlopment to testing environment)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Process Model alert send to all admin even it set to specific user</title><link>https://community.appian.com/thread/154941?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 15:05:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5d22fe4d-2ada-41f2-a12c-c145748b7b70</guid><dc:creator>Harsha Sharma</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154941?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40510/process-model-alert-send-to-all-admin-even-it-set-to-specific-user/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hope the process model is published. Check if the user is active. If the user configured in Alert setting is deactivated, all environment admins will be notified. As per best practice have a group of users configured in alert settings instead of a user. User&amp;#39;s dont get promoted to higher environments, groups do!&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154938?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 12:53:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:262d0765-f0d7-4648-8117-a71822ec4d8f</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154938?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="/members/stewart.burchell"&gt;Stewart Burchell&lt;/a&gt;&amp;nbsp; Even same question from my side.&lt;br /&gt;When an unattended node errors out, the process shows as &amp;quot;Active&amp;quot;&amp;nbsp; in process reports but &amp;quot;Active with Errors&amp;quot; in Monitoring view. Is there a way to query/detect &amp;quot;Active with Errors&amp;quot; state from a process report.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154937?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 12:08:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:28821ef6-9d08-47a2-93c2-f62cc7bf2e11</guid><dc:creator>Mayank_Verma</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154937?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;As mentioned above, I tried adding the filter to the Process Report. Unfortunately, it&amp;#39;s not displaying any process instance though I have like 3 process instance errors.&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1781698085811v2.png" alt=" " /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1781698105240v3.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154936?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 12:00:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:756710fd-63ce-41b0-90a6-5e87018fe4f1</guid><dc:creator>Stewart Burchell</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154936?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Maybe I&amp;#39;m misunderstanding what you&amp;#39;re asking? A process report can filter the list of processes based upon some criteria. If you&amp;#39;re only interested in instances that are in error then you an use &amp;#39;Status&amp;#39; set to &amp;#39;Paused By Exception&amp;#39; as described. If you want &lt;em&gt;&lt;strong&gt;data&lt;/strong&gt; &lt;/em&gt;about those instances then that&amp;#39;s available in the &amp;#39;Data&amp;#39; tab:&lt;/p&gt;
&lt;p&gt;&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/14/pastedimage1781697512361v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;You have access to anything you might have access to in the Process Model itself - pv!s, pm!s,pp!s...just select + New Data and pick what it is you&amp;#39;re looking for.&lt;/p&gt;
&lt;p&gt;See here for more details;&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/26.5/Configuring_Process_Reports.html"&gt;docs.appian.com/.../Configuring_Process_Reports.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154935?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 11:55:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:50d82200-c081-4d60-afcc-f243ddf36880</guid><dc:creator>Mayank_Verma</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154935?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;a href="/members/stewart.burchell"&gt;Stewart Burchell&lt;/a&gt;&amp;nbsp;- Maybe there is a miscommunication from my end. I want to get the details of processes that are active and in errored state. Are those also filterable with process reports?&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1781697328341v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154934?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 11:51:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:68c5ff6e-7595-4284-8b6a-446b610178e5</guid><dc:creator>Stewart Burchell</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154934?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="/members/mayankv557314"&gt;Mayank_Verma&lt;/a&gt;&amp;nbsp; - an instance is&amp;nbsp;not Active if it is &amp;#39;Paused By Exception&amp;#39;. There are a few other Statuses that it can be in:&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/pastedimage1781697074268v1.png" alt=" " /&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154933?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 11:15:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e1162dbb-7652-4d72-9e43-b2cb59bcc5d9</guid><dc:creator>Mayank_Verma</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154933?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi &lt;a href="/members/stewart.burchell"&gt;Stewart Burchell&lt;/a&gt;&amp;nbsp;, would this also include active processes with errors?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Query Process Instances with Errors</title><link>https://community.appian.com/thread/154932?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 11:04:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b19ed224-526d-4258-b658-a59be46f8c85</guid><dc:creator>Stewart Burchell</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154932?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40512/how-to-query-process-instances-with-errors/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Process Reports &lt;strong&gt;do&lt;/strong&gt; allow you to filter on the Status and you can select &amp;#39;Paused By Exception&amp;#39; for instances that are in error.&lt;/p&gt;
&lt;p&gt;(on the reminder....I would caution you to consider what might happen if there were a very large number of process instances in error and you were sending emails every 5 minutes for all instances...you might want to think of a digest email e.g. &amp;quot;There are 97 instances of XXX process in error since &amp;lt;dateTime&amp;gt;&amp;quot; or similar...but even here, every 5 minutes seems like you&amp;#39;d end up spamming the recipients unnecessarily...)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to handle service errors in process models</title><link>https://community.appian.com/thread/154931?ContentTypeID=1</link><pubDate>Wed, 17 Jun 2026 07:55:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bd279753-b670-4e8b-8810-5938c3ced00e</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>1</slash:comments><comments>https://community.appian.com/thread/154931?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40511/how-to-handle-service-errors-in-process-models/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Add an XOR path after the Integration node that checks success. Add an XOR path after the Integration node that checks success. On failure: show a user-friendly message and log error.message.&lt;br /&gt;The Integration smart service returns errors in its result (it doesn&amp;#39;t throw), so for transient cases (timeouts, 408/503) build your own bounded retry loop with a timer.&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/26.5/Integration_Tutorial.html#add-error-handling"&gt;https://docs.appian.com/suite/help/26.5/Integration_Tutorial.html#add-error-handling&lt;/a&gt;&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/26.3/Automatic_Error_Handling.html"&gt;https://docs.appian.com/suite/help/26.3/Automatic_Error_Handling.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Process Model (Sub processes are not starting)</title><link>https://community.appian.com/thread/154924?ContentTypeID=1</link><pubDate>Mon, 15 Jun 2026 14:35:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e69cb1b8-408c-414d-8a12-f4d2c9e9eb32</guid><dc:creator>Harsha Sharma</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154924?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40504/process-model-sub-processes-are-not-starting/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Once the subprocess completes by reaching an end node you should see the status as Completed. Inspect your subprocess instances if they have any errors or is paused at a node or is still in progress!&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Process Model (Sub processes are not starting)</title><link>https://community.appian.com/thread/40504?ContentTypeID=0</link><pubDate>Sun, 14 Jun 2026 05:00:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:22e8a51a-c8e2-4a2f-806f-f04f65a69601</guid><dc:creator>Tulasi Venkata Siva Kumar Degala</dc:creator><slash:comments>2</slash:comments><comments>https://community.appian.com/thread/40504?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40504/process-model-sub-processes-are-not-starting/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p data-start="75" data-end="158"&gt;I have a question regarding the subprocess status shown in the attached screenshot.&lt;/p&gt;
&lt;p data-start="160" data-end="367"&gt;The subprocesses are displaying the status as &lt;strong data-start="206" data-end="222"&gt;&amp;quot;Unattended&amp;quot;&lt;/strong&gt; instead of &lt;strong data-start="234" data-end="249"&gt;&amp;quot;Completed&amp;quot;&lt;/strong&gt;. I have configured the subprocess node to &lt;strong data-start="292" data-end="339"&gt;&amp;quot;Run as whoever designed the process model&amp;quot;&lt;/strong&gt; in the assignment settings.&lt;/p&gt;
&lt;p data-start="369" data-end="488"&gt;Could you please help me understand why the subprocesses are still showing as &lt;strong data-start="447" data-end="461"&gt;Unattended&lt;/strong&gt; rather than &lt;strong data-start="474" data-end="487"&gt;Completed&lt;/strong&gt;?&lt;/p&gt;
&lt;p data-start="490" data-end="533"&gt;I&amp;#39;ve attached the screenshot for reference.&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/Screenshot-2026_2D00_06_2D00_14-092830.png" alt=" " /&gt;&lt;/p&gt;</description></item><item><title>RE: Process Model (Sub processes are not starting)</title><link>https://community.appian.com/thread/154921?ContentTypeID=1</link><pubDate>Mon, 15 Jun 2026 13:27:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8d1d29e8-4b61-4913-a776-7feafa978907</guid><dc:creator>Shubham Aware</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154921?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40504/process-model-sub-processes-are-not-starting/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Run as designer only controls permissions, not the node type. A subprocess stays Unattended while active and turns Completed only when its instance reaches a valid end node, so yours is likely still running or stuck on an internal node.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Start process smart service triggers another process twice</title><link>https://community.appian.com/thread/154773?ContentTypeID=1</link><pubDate>Tue, 02 Jun 2026 15:48:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c18fa80f-8b04-46c2-bb7d-dce7ae9789a8</guid><dc:creator>cuongn393331</dc:creator><slash:comments>0</slash:comments><comments>https://community.appian.com/thread/154773?ContentTypeID=1</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/19903/start-process-smart-service-triggers-another-process-twice/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi Richard, i have same issue as you, extra process node with no instances. Have you got&amp;nbsp;solution for&amp;nbsp;this yet?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Start process smart service triggers another process twice</title><link>https://community.appian.com/thread/19903?ContentTypeID=0</link><pubDate>Wed, 11 Nov 2020 09:46:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:212bdbe7-6fea-4477-bd50-773d10de9f95</guid><dc:creator>Richard Michaelis</dc:creator><slash:comments>7</slash:comments><comments>https://community.appian.com/thread/19903?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/19903/start-process-smart-service-triggers-another-process-twice/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;strong&gt;background information:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We are working on Appian 20.2 on premise.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;the application we are talking&amp;nbsp;has a&amp;nbsp;lot of processes. around 300 started in 30 minutes, which are working fine. Another 9400 in the upcoming 9 hours, which are not working as expected&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Process context.:&lt;/strong&gt;&lt;br /&gt;I have a main process, which is initially started by&amp;nbsp;start process. This works fine. Then this main process is searching via script task&amp;nbsp;for an id, which is saved in the process as process variable.&lt;br /&gt;The rule in the script task uses a&amp;nbsp; &amp;quot;a!queryEntity_18r3&amp;quot;&amp;nbsp;to load this id from the wanted table. This all works fine so far and through all processes.&lt;br /&gt;last step before finishing the process via end event, a &amp;quot;start process smart service&amp;quot; starts the same &amp;quot;main process&amp;quot; for the newly found id.&amp;nbsp;&lt;br /&gt;so we have a long chain of processes wich are starting and are started by a process (instance) of the same model.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Issue:&lt;/strong&gt;&lt;br /&gt;after several processes (300 processes or 30 minutes), we got the issues, that the start process smart service is starting two other processes, but it&amp;nbsp;has still just 1 instance.&lt;br /&gt;All double processes have the same previous loaded initial id, they all load and calculate the same process values, even the same &amp;quot;next id&amp;quot; via query entity and all are starting the same new process.&lt;br /&gt;so we have a chain with two processes now.&lt;br /&gt;This happens after 5 hours another time, so now we&amp;nbsp;have three processes running the same time with the same exact data.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Could this be an appian bug, because of to much processes in a short time for engines or other possible reasons?&lt;/p&gt;</description></item><item><title>Capture error from the process and show in the interface</title><link>https://community.appian.com/thread/40458?ContentTypeID=0</link><pubDate>Tue, 26 May 2026 11:35:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1f1e16af-3c2a-4a0a-9de5-a806df2b2764</guid><dc:creator>dipaliawaghade</dc:creator><slash:comments>2</slash:comments><comments>https://community.appian.com/thread/40458?ContentTypeID=0</comments><wfw:commentRss>https://community.appian.com/discussions/f/process/40458/capture-error-from-the-process-and-show-in-the-interface/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;span&gt;We have 4 query database smart service nodes in the process model which we are triggering through interface using a!startProcess() based on selected action like add,update and move but business want us to show real time error in the interface if any node fails or process fails, how can we achieve this?&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/14/pastedimage1779795329389v1.png" alt=" " /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;</description></item></channel></rss>