<?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>How to use value process variable in to Interface</title><link>https://community.appian.com/discussions/f/process/25850/how-to-use-value-process-variable-in-to-interface</link><description>Hi, 
 I have process model with process variable value like below 
 
 if i wanna use process variable for rule input in interface? 
 Must I do? 
 
 Thanks</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to use value process variable in to Interface</title><link>https://community.appian.com/thread/101112?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2022 16:04:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2c969e14-aae4-4836-a064-caace45bd337</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;I think this is a general question regarding how to get a process variable into an interface, via rule input..?&lt;/p&gt;
&lt;p&gt;..which is general Appian functionality, my recommendation would be to &lt;a href="https://docs.appian.com/suite/help/22.3/SAIL_Tutorial.html"&gt;start with some Tutorials&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to use value process variable in to Interface</title><link>https://community.appian.com/thread/101060?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2022 07:53:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:aa613167-44e3-4374-8a25-bd24c09bb219</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I see so many solutions to so many challenges and still do not understand what the TO was asking for ?!? Is that only me?&lt;/p&gt;
&lt;p&gt;So my question is: What do you want to achieve? In detail please!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to use value process variable in to Interface</title><link>https://community.appian.com/thread/101059?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2022 07:50:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f033d832-9599-4368-acf0-0fbcfad44ae0</guid><dc:creator>puneets0004</dc:creator><description>&lt;p&gt;See, refer this below code and i have created one UI and created two rule inputs with the same name which i have created Process variable but make sure you have to make your Process Variable as &amp;quot;Parameter&amp;quot;.&lt;/p&gt;
&lt;p&gt;a!formLayout(&lt;br /&gt; label: &amp;quot;Form&amp;quot;,&lt;br /&gt; contents: {&lt;br /&gt; a!sectionLayout(&lt;br /&gt; contents: {&lt;br /&gt; a!sideBySideLayout(&lt;br /&gt; items: {&lt;br /&gt; a!sideBySideItem(&lt;br /&gt; item: a!textField(&lt;br /&gt; label: &amp;quot;Name&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; value: ri!AS_Employee_Rahul_Task.name,&lt;br /&gt; saveInto: ri!AS_Employee_Rahul_Task.name,&lt;br /&gt; refreshAfter: &amp;quot;UNFOCUS&amp;quot;,&lt;br /&gt; required: true,&lt;br /&gt; validations: {}&lt;br /&gt; )&lt;br /&gt; ),&lt;br /&gt; a!sideBySideItem(&lt;br /&gt; item: a!textField(&lt;br /&gt; label: &amp;quot;Email ID&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; value: ri!AS_Employee_Rahul_Task.emailId,&lt;br /&gt; saveInto: ri!AS_Employee_Rahul_Task.emailId,&lt;br /&gt; refreshAfter: &amp;quot;UNFOCUS&amp;quot;,&lt;br /&gt; required: true,&lt;br /&gt; validations: {}&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; ),&lt;br /&gt; a!sectionLayout(&lt;br /&gt; contents: {&lt;br /&gt; a!sideBySideLayout(&lt;br /&gt; items: {&lt;br /&gt; a!sideBySideItem(&lt;br /&gt; item: a!textField(&lt;br /&gt; label: &amp;quot;Contact Number&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; value: ri!AS_Employee_Rahul_Task.contactNumber,&lt;br /&gt; saveInto: ri!AS_Employee_Rahul_Task.contactNumber,&lt;br /&gt; refreshAfter: &amp;quot;UNFOCUS&amp;quot;,&lt;br /&gt; required: false,&lt;br /&gt; validations: {}&lt;br /&gt; )&lt;br /&gt; ),&lt;br /&gt; a!sideBySideItem(&lt;br /&gt; item: a!fileUploadField(&lt;br /&gt; label: &amp;quot;Resume Upload&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; saveInto: {},&lt;br /&gt; required: false,&lt;br /&gt; validations: {}&lt;br /&gt; )&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; buttons: a!buttonLayout(&lt;br /&gt; primaryButtons: {&lt;br /&gt; a!buttonWidget(&lt;br /&gt; label: &amp;quot;Submit&amp;quot;,&lt;br /&gt; icon: &amp;quot;angle-double-right-bold&amp;quot;,&lt;br /&gt; /*value: ri!AS_Employee_Rahul_Task,*/&lt;br /&gt; saveInto: a!startProcess(&lt;br /&gt; processModel: cons!AS_Employee_Details_Rahul,&lt;br /&gt; processParameters:{&lt;br /&gt; Employee_Details:ri!AS_Employee_Rahul_Task,&lt;br /&gt; cancel:ri!cancel&lt;br /&gt; }&lt;br /&gt; ),&lt;br /&gt; submit: true,&lt;br /&gt; style: &amp;quot;PRIMARY&amp;quot;&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; secondaryButtons: {&lt;br /&gt; a!buttonWidget(&lt;br /&gt; label: &amp;quot;Cancel&amp;quot;,&lt;br /&gt; value: true,&lt;br /&gt; saveInto: ri!cancel,&lt;br /&gt; submit: true,&lt;br /&gt; style: &amp;quot;NORMAL&amp;quot;,&lt;br /&gt; validate: false&lt;br /&gt; )&lt;br /&gt; }&lt;br /&gt; )&lt;br /&gt;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to use value process variable in to Interface</title><link>https://community.appian.com/thread/101058?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2022 07:44:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2ffebad3-29f9-4df8-8186-4ced0506654c</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;I put this together to visually explain how data can be made to flow from a Process to a User Interface (and back again if required):&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/14/pastedimage1663055093339v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;This should help you with the conceptual model of how it works, and give you an insight in where to look to solve your issue.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to use value process variable in to Interface</title><link>https://community.appian.com/thread/101057?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2022 07:36:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:660e9a4b-ac7b-4c5a-a85e-4b8c5836148b</guid><dc:creator>khuuduong</dc:creator><description>&lt;p&gt;I try, but it don&amp;#39;t receive value form process model&lt;/p&gt;
&lt;div class="eJOY__extension_root_class" id="eJOY__extension_root"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to use value process variable in to Interface</title><link>https://community.appian.com/thread/101056?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2022 07:34:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4230534a-a464-496d-bc8b-9ed75aba3637</guid><dc:creator>puneets0004</dc:creator><description>&lt;p&gt;Yes, you can call the Process Model in the saveInto with the help of a!startProcess and pass the Process Model and Process Parameter which you have created in your PM as Process Variable.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to use value process variable in to Interface</title><link>https://community.appian.com/thread/101055?ContentTypeID=1</link><pubDate>Tue, 13 Sep 2022 07:31:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:260c66bb-3fa4-4d77-8233-af15478a5130</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;Map a user input task with a similar type RI. Pass this PV in that RI in the forms tab of the UIT.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>