<?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>What is difference between end event and a terminate the event?</title><link>https://community.appian.com/discussions/f/process/19600/what-is-difference-between-end-event-and-a-terminate-the-event</link><description>What is difference between end event and a terminate the event?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/107058?ContentTypeID=1</link><pubDate>Tue, 24 Jan 2023 16:24:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e892f7a7-e3e1-46a8-aa2f-dd6eddd8035d</guid><dc:creator>Chris</dc:creator><description>[quote userid="86435" url="~/discussions/f/process/19600/what-is-difference-between-end-event-and-a-terminate-the-event/107047#107047"]Can we have &lt;span&gt;&lt;span class="ui-provider cfp cfq c d e f g h i j k l m n o p q r s t cfr cfs w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;2 or more terminal end nodes in our process, or does it defy best practises?&amp;nbsp;&lt;/span&gt;&lt;/span&gt;[/quote]
&lt;p&gt;You can have as many terminating end events in your process model as you need, AFAIK there is no best practice to limit the amount of these nodes (other than keeping your &lt;em&gt;total&lt;/em&gt; count of nodes less than 50).&amp;nbsp; I will add them based on organization, if there is no end event nearby in the modeler to use, I&amp;#39;ll add another instead of running a path across multiple swim lanes to get to one, etc.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/107047?ContentTypeID=1</link><pubDate>Tue, 24 Jan 2023 14:19:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6377b8a9-65a7-490f-a3aa-dd07e2bd73c3</guid><dc:creator>Aaryan</dc:creator><description>&lt;p&gt;Can we have &lt;span&gt;&lt;span class="ui-provider cfp cfq c d e f g h i j k l m n o p q r s t cfr cfs w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;2 or more terminal end nodes in our process, or does it defy best practises?&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76671?ContentTypeID=1</link><pubDate>Wed, 23 Sep 2020 16:02:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:313ba176-2d60-4401-be1c-2423c403658b</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;Sub process O&amp;amp;M is a great example - with a non-terminating end event, after restarting a node you have to ensure to cancel the error instance of the node as well (or edit to terminating end event as Mike notes).&amp;nbsp; Also bitten us multiple times, which is why our code reviews require a terminating end event (properly placed of course) in all processes.&amp;nbsp; In 10 years working with Appian I can&amp;#39;t recall having many issues with terminate events, but also can&amp;#39;t count how much troubleshooting I&amp;#39;ve done with non-terminating.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76668?ContentTypeID=1</link><pubDate>Wed, 23 Sep 2020 14:16:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4039d5dc-e3f5-49c4-8661-9d0726c6b07b</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;That&amp;#39;s fine until you work O&amp;amp;M, and suddenly realize that if you restart or bypass a node that failed due to an error, the end event no longer actually forces the instance to close and resume the parent process.&amp;nbsp; I can&amp;#39;t count the number of times I&amp;#39;ve needed to edit an instance just to turn its plain End node into a Terminate to handle various permutations of this situaton, when they could&amp;#39;ve just used a Terminate node instead.&amp;nbsp; I&amp;#39;ve never regretted using terminates liberally - the only possible exception is when a newbie developer used a terminate where they should really have used an end node, but even that is usually the other way around.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76655?ContentTypeID=1</link><pubDate>Wed, 23 Sep 2020 08:49:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:679370ef-39a9-4bd6-b1f9-5d056f0990e4</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;&lt;a href="/members/mikes0011"&gt;Mike Schmitt&lt;/a&gt; Interesting PoV. I take the &amp;quot;horses for courses&amp;quot; view - know when to use a terminate event, know when to use an end event and use as applicable. I don&amp;#39;t see the need for making the end event terminates by default because (for me) that&amp;nbsp;causes special behaviour that is only needed in certain circumstances. Which you use has no bearing on when a process instance gets flushed from memory. The criteria for that is the Data Management policy you&amp;#39;ve instituted only comes into force when all active threads have completed. So: I use End by default, and ONLY use Terminate when I need to kill the process and kill all currently active threads.&lt;/p&gt;
&lt;p&gt;Discuss.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76634?ContentTypeID=1</link><pubDate>Tue, 22 Sep 2020 17:43:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:66f367dc-8f02-4f0e-96da-c36014d248bb</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;100% agree as well, defaulting to Terminate functionality would be a nice time saver.&amp;nbsp; Checking our dev environment, 1566 process models has costed at least 7830 clicks to just setup terminate functionality on the primary end nodes, which is probably used in over 90% of our overall End Events as well.&amp;nbsp; Got my vote.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76626?ContentTypeID=1</link><pubDate>Tue, 22 Sep 2020 16:26:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a9f1b167-2bd7-4777-be17-73e221092ecb</guid><dc:creator>davel001150</dc:creator><description>&lt;p&gt;Agreed.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If Appian is still interested in time savings, just look at the total minutes recovered across an application&amp;#39;s development when you&amp;#39;ve made Terminate the default behavior of the node, and End the secondary behavior that you have to explicitly define.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76623?ContentTypeID=1</link><pubDate>Tue, 22 Sep 2020 14:03:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ec31d1d0-e482-423b-b003-559cec0fff4c</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Strong agree -&amp;nbsp; I make all end nodes Terminate nodes until/unless otherwise required.&amp;nbsp; In fact I&amp;#39;m &lt;em&gt;&lt;strong&gt;actively&lt;/strong&gt;&lt;/em&gt; annoyed that there&amp;#39;s no way to add terminate nodes by default or at least have them show up as an extra selection - since it costs 5 or 6 clicks to switch an End around and activate the Terminate functionality.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76618?ContentTypeID=1</link><pubDate>Tue, 22 Sep 2020 12:43:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bb6ed7c5-5cac-4149-8ee1-1c26796c7cd1</guid><dc:creator>ChristineLHutchison</dc:creator><description>&lt;p&gt;I always recommend that a process have a terminate event. A terminate event makes sure that receive email message nodes are no longer listening, timers are no longer active, quick tasks (for process backed records) are no longer available, ... This will make sure that this instance of the process model is now beginning its data management journey to archive, that in turn, helps keep your environment leaner.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76563?ContentTypeID=1</link><pubDate>Sun, 20 Sep 2020 09:45:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d1747bdd-cccc-4c29-b091-16ae0584d531</guid><dc:creator>gangadharr0001</dc:creator><description>&lt;p&gt;Thanks for quick reply&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between end event and a terminate the event?</title><link>https://community.appian.com/thread/76561?ContentTypeID=1</link><pubDate>Sun, 20 Sep 2020 09:09:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1ca2452d-fb16-4fae-900a-1ac5611a7123</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/20.3/End_Event.html#results"&gt;https://docs.appian.com/suite/help/20.3/End_Event.html#results&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A process can have multiple End Events. If so, the different branches of a process remain active until each active path reaches one of the multiple End Event nodes. In such cases, a Terminate Process event can be used to stop all branches of a process, even if one or more branches have not yet reached an End Event node.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>