<?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>A!start process</title><link>https://community.appian.com/discussions/f/general/20972/a-start-process</link><description>In a!start process how do we call 2 user and 2 group type parameters from PM. 
 Do posts code.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: A!start process</title><link>https://community.appian.com/thread/81699?ContentTypeID=1</link><pubDate>Sun, 16 May 2021 08:04:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:73ee16ef-ad3c-47b0-85a5-b6db1746180a</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;a!startProcess starts the process in background. You will not be navigated to any user input task. Regardless of chaining settings.&lt;/p&gt;
&lt;p&gt;If you want to use to see any forms, then go with a!startProcessLink.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A!start process</title><link>https://community.appian.com/thread/81696?ContentTypeID=1</link><pubDate>Sat, 15 May 2021 17:15:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:30c586cf-a149-4179-ac71-3fc7525eb49d</guid><dc:creator>Radha009</dc:creator><description>&lt;p&gt;I mean I need to enter username then click on submit button where have configured startprocess..&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A!start process</title><link>https://community.appian.com/thread/81695?ContentTypeID=1</link><pubDate>Sat, 15 May 2021 17:11:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e9bdcb8b-cbd5-4823-83ec-9d48a6d68604</guid><dc:creator>Radha009</dc:creator><description>&lt;p&gt;Thanks Harshit... One more doubt if am running the process model then it&amp;#39;s working fine ..but when am calling in a!startprocess then process initiates but it gets stuck after filling the data ..I have used activity chaining so ideally it should move to next node ...Do you have any suggestions how to make it work...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A!start process</title><link>https://community.appian.com/thread/81694?ContentTypeID=1</link><pubDate>Sat, 15 May 2021 16:56:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c7d03e54-1065-4068-9048-7013894ed475</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;This is called a map or dictionary&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/21.1/Expressions.html#maps"&gt;docs.appian.com/.../Expressions.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A!start process</title><link>https://community.appian.com/thread/81693?ContentTypeID=1</link><pubDate>Sat, 15 May 2021 16:13:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2213870a-b0d5-4f21-8f20-2d23c26144ad</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Correct!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A!start process</title><link>https://community.appian.com/thread/81692?ContentTypeID=1</link><pubDate>Sat, 15 May 2021 16:05:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6c24cf59-97ec-42a8-a158-19db82259719</guid><dc:creator>Radha009</dc:creator><description>&lt;p&gt;So incase of dynamically adding value... I just need to pass ri!user1,ri!user2, ri!group 1and ri!group2...&lt;/p&gt;
&lt;p&gt;Right?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: A!start process</title><link>https://community.appian.com/thread/81691?ContentTypeID=1</link><pubDate>Sat, 15 May 2021 15:59:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:951b0e66-2459-4be0-bfbe-8b07c73d9b09</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Hi Radha,&lt;/p&gt;
&lt;p&gt;a!startProcess and a!startProcessLink, both of them accept params in form of a dictionary. You can just simply create&amp;nbsp;&lt;span&gt;a dictionary with the varibale names as keys and assign a value to it that you want to pass in that variable.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Example -&lt;br /&gt;&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;{
    user1: &amp;quot;benjamin.john&amp;quot;,
    user2: &amp;quot;first.last&amp;quot;,
    group1: cons!FIRST_GROUP,
    group2: cons!SECOND_GROUP
}&lt;/pre&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;Here, user1, user2, group1, group2 are the variable names and then I am passing some value that I want to assign to them.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks,&lt;br /&gt;Harshit&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>