<?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 Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/discussions/f/general/12775/what-is-difference-between-start-process-smart-service-and-subprocess</link><description>When to use subprocess and when to Start Process smart service? 
 I have a question that if we can start a process asynchronously using sub process then why there is a need of start process smart service ? As start process smart service starts a process</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57239?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 11:59:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6fa5a7b9-edbc-4604-a636-2c7c6319a925</guid><dc:creator>mohamedt808</dc:creator><description>Also have a look at &lt;a href="https://docs.appian.com/suite/help/18.2/Ways_to_Start_a_Process_From_a_Process.html"&gt;docs.appian.com/.../Ways_to_Start_a_Process_From_a_Process.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57238?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 11:54:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5d39db0a-8b6e-40be-ae7d-eb4a0133190a</guid><dc:creator>Aswini </dc:creator><description>Hi diptis,&lt;br /&gt;
&lt;br /&gt;
Once see this previous discussion.&lt;br /&gt;
&lt;a href="https://community.appian.com/discussions/f/process/11614/what-is-the-difference-between-start-process-and-sub-process"&gt;community.appian.com/.../what-is-the-difference-between-start-process-and-sub-process&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Hope this helpful&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
Aswini&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57220?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 10:00:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:791590aa-515f-446a-aa7d-e535007200dc</guid><dc:creator>Sidhant Behura</dc:creator><description>Hi diptis,&lt;br /&gt;
&lt;br /&gt;
The Start Process smart service is available as an expression function that can be executed inside a saveInto on a Interface Component or as part of a Web API. &lt;br /&gt;
&lt;br /&gt;
So if you want to trigger a process model on click of a button or on an action performed on an Interface Component, subprocess wont help.&lt;br /&gt;
&lt;br /&gt;
If you want to trigger a process model in a different Appian instance, you cannot use subprocess. Instead you have to use call a Web API which is in the target environment and in that Web API you need to trigger the process model using a!startProcess().&lt;br /&gt;
&lt;br /&gt;
Hope this answers your question.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Sidhant Behura&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57219?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 09:54:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9f005a02-22d5-4239-894d-32e1a4e036bf</guid><dc:creator>mohamedt808</dc:creator><description>Hi Dipti , &lt;br /&gt;
&lt;br /&gt;
While Using Start process smart service you can parametrise the inputs i.e. You can start any process model . But in Sub process you have to define it. &lt;br /&gt;
&lt;br /&gt;
Also other important thing to consider is that sub process node starts the process in same engine as the parent process . so if this is called in MNI or loop a specific engine will load up which is a bad design  . Start Process Smart service does that engine balancing efficiently . &lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Thoufiq.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57217?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 09:46:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9371bc69-4271-46dc-bf14-5d228930dcc8</guid><dc:creator>Abhay Giri</dc:creator><description>Hi Dipti,&lt;br /&gt;
&lt;br /&gt;
In my view :&lt;br /&gt;
&lt;br /&gt;
start process smart service is asynchronous process so whenever want to trigger/start any process on certain condition and parent process not require to pause/wait to complete the other process. In this we can not inherit the security from the parent process.we can not take any data from child/other process back to parent/caller process model.&lt;br /&gt;
&lt;br /&gt;
In the case of sub-process, we can make child process synchronous and apply chaining as well. Apart from this we can inherit the security from parent process to child process and take back some data from child process to parent process.&lt;br /&gt;
&lt;br /&gt;
you can easily get the documentation in appian. Hope this may help you.&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
Abhay&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57215?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 09:44:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:98549bbb-0b52-4942-b51e-60473b7b89d2</guid><dc:creator>diptis</dc:creator><description>Thanks Shiva&lt;br /&gt;
I have already read the documentation. I have a question that if we can start a process asynchronously using sub process then why there is a  need of start process smart service ? &lt;br /&gt;
&lt;br /&gt;
As start process smart service starts a process asynchronously which can be achieved by sub process also&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57214?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 09:44:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e5d83689-26ea-47bd-9414-671041a94d70</guid><dc:creator>ravalik</dc:creator><description>Hi &lt;a href="/members/diptis"&gt;diptis&lt;/a&gt; ,&lt;br /&gt;
As far as I Know start process smart service  can be used to complete multiple smart services and retrieve the results of the smart services from within an interface or web API.when using activity-chaining in conjunction with the Start Process smart service to ensure you use the smart service properly:&lt;br /&gt;
If a chained flow encounters an attended activity, the activity will be assigned to the user that the Start Process smart service was run as, but it will not open the associated form.&lt;br /&gt;
The &amp;quot;onError&amp;quot; parameter will only evaluate if the process fails to start. It will not evaluate if a node in the started process pauses by exception.&lt;br /&gt;
For more Info:&lt;a href="https://docs.appian.com/suite/help/18.2/Start_Process_Smart_Service.html"&gt;docs.appian.com/.../Start_Process_Smart_Service.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Sub-Process Activity is used to launch sub-processes from within your parent process. It links the two published process models and allows you to transfer data between them.&lt;br /&gt;
Sub-processes can be run either synchronously (finishing before the parent process does) or asynchronously (completing at any time).&lt;br /&gt;
&lt;br /&gt;
For more info:&lt;a href="https://docs.appian.com/suite/help/18.2/Sub-Process_Activity.html"&gt;docs.appian.com/.../Sub-Process_Activity.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
ravalik&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57213?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 09:40:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3e6d11f6-191e-4c4c-81c2-dc213e68d2c5</guid><dc:creator>arikd398</dc:creator><description>Hi &lt;a href="/members/diptis"&gt;diptis&lt;/a&gt; ,&lt;br /&gt;
&lt;br /&gt;
Please refer the below link you will find the details:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.2/Ways_to_Start_a_Process_From_a_Process.html"&gt;docs.appian.com/.../Ways_to_Start_a_Process_From_a_Process.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is difference between Start Process Smart Service and Subprocess?</title><link>https://community.appian.com/thread/57212?ContentTypeID=1</link><pubDate>Wed, 27 Jun 2018 09:39:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:93f41db5-2fcb-4d6b-938f-522d47cd0f50</guid><dc:creator>Shiva Valusa</dc:creator><description>Hi,&lt;br /&gt;
Pls go through following documentation.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.2/Sub-Process_Activity.html"&gt;docs.appian.com/.../Sub-Process_Activity.html&lt;/a&gt;&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.2/Start_Process_Smart_Service.html"&gt;docs.appian.com/.../Start_Process_Smart_Service.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>