<?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>Can I link to another interface inside an interface?</title><link>https://community.appian.com/discussions/f/user-interface/12509/can-i-link-to-another-interface-inside-an-interface</link><description>Can I link to an action (which involves an interface being pulled up) from a different interface?? 
 (there are a limited number of pages you can have on an Appian site and I want to group all these objects and actions together on one page) 
 More details</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/70369?ContentTypeID=1</link><pubDate>Fri, 08 Nov 2019 06:18:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cd073916-cc58-4082-b5fe-5d0c35df30c6</guid><dc:creator>sauravk</dc:creator><description>&lt;p&gt;I tried this but in this my process report is getting open under task tab .&lt;/p&gt;
&lt;p&gt;As per my configuration i am have configured process report in interface which i am calling on master interface on sites. But page is getting open outside site wizard&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55874?ContentTypeID=1</link><pubDate>Tue, 29 May 2018 10:02:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:88a7a6d4-a06c-4604-a5b4-8a8f45c2de0e</guid><dc:creator>aratim</dc:creator><description>It looks like you want to start some other activity(Process Flow) from the current Appian Page. Start Process link will be useful here. Your next activity can be started from this process.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55812?ContentTypeID=1</link><pubDate>Mon, 28 May 2018 22:39:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:21a1e3cd-e9d6-4f05-9042-79de6828a9df</guid><dc:creator>aloks0189</dc:creator><description>Hi &lt;a href="/members/saniyag"&gt;saniyag&lt;/a&gt;  if I am not wrong,  you need to go for wizard where multiple sections are configured within a single form along with some visibility conditions as explained by @mike&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55807?ContentTypeID=1</link><pubDate>Mon, 28 May 2018 17:04:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:542113c7-ab7a-4fbd-9a10-95b068b8e384</guid><dc:creator>ankita0004</dc:creator><description>If you are working on 17.4 or more than you can use a!startprocesslink and use the process in it.&lt;br /&gt;
like. &lt;br /&gt;
&lt;br /&gt;
a!imageField(&lt;br /&gt;
  images:{&lt;br /&gt;
    a!documentImage(&lt;br /&gt;
      document:&amp;quot;image constant&amp;quot;,&lt;br /&gt;
      link:a!startProcessLink(&lt;br /&gt;
      processModel:&amp;quot;constant of process model type&amp;quot;,&lt;br /&gt;
      processParameters:{&lt;br /&gt;
        use process parameters&lt;br /&gt;
      }&lt;br /&gt;
    )&lt;br /&gt;
    )&lt;br /&gt;
  }&lt;br /&gt;
)&lt;br /&gt;
 It calls the process synchronously. You can use multiple  images for multiple actions in a single tab.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55794?ContentTypeID=1</link><pubDate>Mon, 28 May 2018 11:28:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:cce93aa8-e9fb-44b1-a386-bc47d3d90f9b</guid><dc:creator>Pratiksha</dc:creator><description>Yes this will work asynchronously. &lt;br /&gt;
Then you can use dynamic link to call the interface for creating new object. And for editing on click of button you can update the object details to Database.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55793?ContentTypeID=1</link><pubDate>Mon, 28 May 2018 10:55:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a087a7f7-0946-4165-9598-de64f02b417f</guid><dc:creator>Arpit Bhargava</dc:creator><description>This will work in asyncronously.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55792?ContentTypeID=1</link><pubDate>Mon, 28 May 2018 10:48:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:474ec82c-6f04-436d-b139-b8f86e6ca42b</guid><dc:creator>Pratiksha</dc:creator><description>Hi saniyag,&lt;br /&gt;
&lt;br /&gt;
According to my understanding you can create buttons for viewing and editing of current objects and you can trigger a process model using a!startProcess on click of that button and that process model should contain start form(your sub interface). &lt;br /&gt;
And instead  of passing variable you can get the data from Database using query rule.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55730?ContentTypeID=1</link><pubDate>Fri, 25 May 2018 15:33:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bdfd6ba5-84a1-4600-ba33-d52c4e06b12f</guid><dc:creator>Arpit Bhargava</dc:creator><description>Hi,&lt;br /&gt;
&lt;br /&gt;
If you are using the Appian 17.4, you can use a!startProcess which will open the another interface from the interface and you can also pass the parameters as well what you needed to have in the another interface&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55729?ContentTypeID=1</link><pubDate>Fri, 25 May 2018 15:22:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5265873d-9dae-4d12-a374-267c9f682d72</guid><dc:creator>davel001150</dc:creator><description>It looks like a Start Process link might be your best option.  Your process can be as simple as start node, user input task, end node; or even just start node end node with a start form.  Start process links drop users right back to the interface they started from when the process ends.  That really sounds like what you want to do.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55706?ContentTypeID=1</link><pubDate>Fri, 25 May 2018 11:13:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6e376243-f325-4aa0-b27f-f95a69366db7</guid><dc:creator>krishnau3863</dc:creator><description>Hi saniyag,&lt;br /&gt;
&lt;br /&gt;
                  As per my understanding, You can use the process start form for configuring Multiple actions on a single page, so it can be directly configured in site.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55663?ContentTypeID=1</link><pubDate>Fri, 25 May 2018 05:22:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:05d464f5-050d-4b3a-9f05-f51f21f73251</guid><dc:creator>Aditya</dc:creator><description>&lt;p&gt;You can make use of a wizard to show your next form after you click on a button in your first form. That will take you to the other interface (form for the creation of new object).&lt;/p&gt;
&lt;p&gt;you can find more details here:&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/18.1/recipe_build_a_wizard_in_sail.html"&gt;docs.appian.com/.../recipe_build_a_wizard_in_sail.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55661?ContentTypeID=1</link><pubDate>Fri, 25 May 2018 01:06:18 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:136053ec-07a1-4ad0-9002-fd73cb666e25</guid><dc:creator>vimalkumars</dc:creator><description>Hi Saniyag,&lt;br /&gt;
I guess you want to trigger a process to do some activity from the current form.&lt;br /&gt;
If yes have a look into a!startprocesslink(), might be helpful for your usecase?&lt;br /&gt;
&lt;a href="https://docs.appian.com/suite/help/18.1/Start_Process_Link_Component.html"&gt;docs.appian.com/.../Start_Process_Link_Component.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can I link to another interface inside an interface?</title><link>https://community.appian.com/thread/55644?ContentTypeID=1</link><pubDate>Thu, 24 May 2018 17:55:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:53c165d7-8d7e-46c0-9709-9914d919818e</guid><dc:creator>Mike Schmitt</dc:creator><description>I&amp;#39;m not really sure what you mean by &amp;quot;link to an action&amp;quot; - that&amp;#39;s not really a thing, as long as you&amp;#39;re talking about the user staying on the current form at least.&lt;br /&gt;
&lt;br /&gt;
From what I can tell of your description though, it really just sounds like you need to have different sections called by the same form (some of which are called by other forms), which if so, is very possible and fairly standard, and easy to figure out with a bit of experimentation.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>