<?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>starting a particular instance</title><link>https://community.appian.com/discussions/f/process/13684/starting-a-particular-instance</link><description>Hi All, 
 Can i start a particular node and particular process instance from any external click (i.e from interface ) ?? 
 
 Thanks, 
 Bhargavi</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62503?ContentTypeID=1</link><pubDate>Mon, 12 Nov 2018 06:37:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d5e218ad-6508-473f-926f-23cce93c8d19</guid><dc:creator>Dude</dc:creator><description>Starting particular node can be achieved by using the send message or task link. &lt;br /&gt;
Sending a message requires a link to the process model&lt;br /&gt;
Task link requires any active task to proceed.&lt;br /&gt;
To practice this you can make use of process management smart services and task services in the process model&lt;br /&gt;
For any other process node read its usage and available features. So that you can have a better idea to control them according to your requrements.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.3/Smart_Services.html"&gt;docs.appian.com/.../Smart_Services.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62502?ContentTypeID=1</link><pubDate>Mon, 12 Nov 2018 06:02:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e2a34da9-85b8-46af-ac07-d3f2cd406ff5</guid><dc:creator>Sowrabha Rajashekar</dc:creator><description>Hi Bhargavi,&lt;br /&gt;
&lt;br /&gt;
 I would need to understand your process to suggest what is better.&lt;br /&gt;
&lt;br /&gt;
Option 1: If its okay, split the Main Process Model, put the nodes that need to be started in a separate sub process and call that process using a!start process, on interface . Refer the community.appian.com/.../creating-flexible-processes as suggested by Robert  to understand the design.&lt;br /&gt;
&lt;br /&gt;
Option 2: If you need the main process to be active for the whole time until all these are done, use Set PV method, you can  also use IFM Manager to set the PV, instead of Set/Get PV, to update the process variable.&lt;br /&gt;
&lt;br /&gt;
Avoid using Send/Receive Messages, when you have alternatives. Hope this helps.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62489?ContentTypeID=1</link><pubDate>Sun, 11 Nov 2018 04:03:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f67d6187-2abe-403e-bb37-d396b6858e05</guid><dc:creator>bhargavip0001</dc:creator><description>Hi &lt;a href="/members/sowrabhar"&gt;Sowrabha Rajashekar&lt;/a&gt;  , i can do in both the ways where i can start particular instance using send and receive messages with instance id, and other way what you told but which would be better way ?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62469?ContentTypeID=1</link><pubDate>Fri, 09 Nov 2018 16:03:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5318ce18-ce24-4618-be58-1489a098b360</guid><dc:creator>chandu</dc:creator><description>&lt;p&gt;Hi Bhargavi,&lt;/p&gt;
&lt;p&gt;You have a process model and some of the instances are running. Now you want to use send message to trigger only particular instances of that process model.&lt;/p&gt;
&lt;p&gt;I believe when you are triggering the specific Instances means, at run time only you need to get the Destination Process instances id&amp;#39;s and trigger the further Execution of those Process instances with Send Message event.&lt;/p&gt;
&lt;p&gt;In the above scenario you are picking up the selected Process instance Id&amp;#39;s based on a condition. Now have that condition present in a DB table.&lt;/p&gt;
&lt;p&gt;Now periodically run a process with the help of timer event, pull the matching rows from the DB where your condition satisfies:&lt;/p&gt;
&lt;p&gt;If rows are not present then you can end the process here.&lt;/p&gt;
&lt;p&gt;If rows are coming up, then you design the same work flow that is done in the receive message event PM.&lt;/p&gt;
&lt;p&gt;Once you start the work flow Make sure the existing row/ Matching should be updated to inactive so that we can avoid re triggering of the instances.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62459?ContentTypeID=1</link><pubDate>Fri, 09 Nov 2018 13:56:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cb12ba62-a0df-4f64-b2a3-0f730b433598</guid><dc:creator>Robert Shankin</dc:creator><description>Start process is much more fashionable that send message these days.&lt;br /&gt;
I&amp;#39;d recommend avoiding send message if you can.&lt;br /&gt;
I&amp;#39;m not clear on the use case, but I expect all community members interested in this thread would benefit from reading these playbook plays:&lt;br /&gt;
&lt;a href="https://community.appian.com/w/the-appian-playbook/822/creating-flexible-processes"&gt;community.appian.com/.../creating-flexible-processes&lt;/a&gt; &lt;br /&gt;
and&lt;br /&gt;
&lt;a href="https://community.appian.com/w/the-appian-playbook/220/creating-memory-efficient-models"&gt;community.appian.com/.../creating-memory-efficient-models&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62455?ContentTypeID=1</link><pubDate>Fri, 09 Nov 2018 09:59:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6cec6d1b-6629-4865-9986-050ce3ce89f4</guid><dc:creator>bhargavip0001</dc:creator><description>you mean send message event ??&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62283?ContentTypeID=1</link><pubDate>Mon, 05 Nov 2018 09:13:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:281bd49b-16a8-4a5a-b2f3-ada496b11844</guid><dc:creator>mohamedt808</dc:creator><description>&lt;p&gt;Hi Bhargavi, &lt;br /&gt; &lt;br /&gt; Only sending the message to process model (i.e. to create new instance ) is deprecated we have to use start process smart service instead, where as sending message to already active instance is not deprecated. Refer here &lt;a href="https://docs.appian.com/suite/help/18.3/Send_Message_to_Process_Model.html"&gt;docs.appian.com/.../Send_Message_to_Process_Model.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62282?ContentTypeID=1</link><pubDate>Mon, 05 Nov 2018 09:10:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1f02c036-f520-4413-9dcc-365d78fc975a</guid><dc:creator>Sowrabha Rajashekar</dc:creator><description>Also , Send Message to a Process Model has been deprecated, while Send Message to a Specific Process is allowed. So if you know the process instance Id, you can use this smart service to send messages to a process.&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.3/Send_Message_Event.html#sending-a-message-to-a-specific-process"&gt;docs.appian.com/.../Send_Message_Event.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62281?ContentTypeID=1</link><pubDate>Mon, 05 Nov 2018 09:03:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:56dff593-4b78-4d2e-a22f-27145e1e0771</guid><dc:creator>Sowrabha Rajashekar</dc:creator><description>Hi Bhargavi,&lt;br /&gt;
&lt;br /&gt;
One way to do this without Send/Receive Messages, is using combination of a!startProcess and  Get and Set Process Variables Smart Service. To start a node, when the value of a pv changes to desired.&lt;br /&gt;
&lt;br /&gt;
 The actual process model that needs to be started, should have a rule event,just before the node you want to start. Have a condition, using a pv, for ex : pv!startNode = true. Make the pv!startNode =false initially.&lt;br /&gt;
&lt;br /&gt;
Create a process model that takes process instance id and process variable as input and uses  Get and Set Process Variables Smart Service to set the PV. In this case to set pv!startNode = true.&lt;br /&gt;
&lt;br /&gt;
And on the button click of the interface, call this process model using a!startProcess and pass the process instance id and pv!startNode value . And this process would set the pv and start the node.&lt;br /&gt;
&lt;br /&gt;
Hope this helps. Lets see if other practitioners have better ideas.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62268?ContentTypeID=1</link><pubDate>Mon, 05 Nov 2018 05:44:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:10192164-d80e-46f5-813e-fbfa602a0f59</guid><dc:creator>bhargavip0001</dc:creator><description>Hi Krishna,&lt;br /&gt;
&lt;br /&gt;
Thanks for the replay ,&lt;br /&gt;
&lt;br /&gt;
I am fine with how to use that smart service but i wanted to know if send message event is going to depreciate means which one can be used to start particular instance ??  i cant start manually it should make automatic  &lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Bhargavi&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62265?ContentTypeID=1</link><pubDate>Mon, 05 Nov 2018 05:25:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:70a18600-cf44-403f-a474-4d3b13b6e8d1</guid><dc:creator>krishnau3863</dc:creator><description>Hi bhargavip0001,&lt;br /&gt;
&lt;br /&gt;
         ---&amp;gt;      AFAIK, Start Process Smart Service allows you to initiate a process from another process, a web API, or an interface. The new process is started asynchronously, and the process flow of the current process continues immediately after all activity-chaining completes. &lt;br /&gt;
        ---&amp;gt;     But in your case, you want to start the particular process instance, in my view it is not possible through that smart service. you should manually go to the monitoring mode and start the particular instance.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Krishna.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62260?ContentTypeID=1</link><pubDate>Mon, 05 Nov 2018 04:47:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:145f2e5f-9300-49aa-99c3-c35d6732e3eb</guid><dc:creator>bhargavip0001</dc:creator><description>Hi, &lt;br /&gt;
&lt;br /&gt;
I am able to start now using the same way but its written that &lt;br /&gt;
The option to start a process using the Send Message Event node has been deprecated, and will be removed in a future version of Appian. Use the Start Process smart service instead.&lt;br /&gt;
&lt;br /&gt;
how tp user start process smart service to start particular instance ?&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62109?ContentTypeID=1</link><pubDate>Wed, 31 Oct 2018 09:34:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7cf39a41-1503-44c1-b3f1-d498e8e9e158</guid><dc:creator>Thenmozhi Mohanakrishnan</dc:creator><description>You can make use of Process Management Services smart service to start particular node in a process instance.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="https://forum.appian.com/suite/tempo/records/item/lIBCLGOdlMUpdGVqW3dQaIKmclBmvvNEj8vu_cjb7T-5YiPr4Fu8ly5Yj1s09uenE4RYzA8zKyx7eiUjepE6dGk75DUwf-MkSsbwuya1TTzzij2/view/summary"&gt;forum.appian.com/.../summary&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: starting a particular instance</title><link>https://community.appian.com/thread/62107?ContentTypeID=1</link><pubDate>Wed, 31 Oct 2018 09:02:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2806628a-561a-4b91-bea8-c5047b9a7959</guid><dc:creator>mohamedt808</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt; &lt;br /&gt; If you know the process instance ID then using messaging you can&amp;nbsp;Start /&amp;nbsp;Restart&amp;nbsp;any node in that process. Your target process should be configured with a receive message node .&lt;br /&gt; &lt;br /&gt; From an Interface click start a process Instance that sends a message to your target process instances receive message node .&lt;/p&gt;
&lt;p&gt;-Thoufiq.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>