<?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>Displaying Data</title><link>https://community.appian.com/discussions/f/process/17133/displaying-data</link><description>Hi all, 
 I have a requirement like, there are 2 user input task , 1st interface has a paragraph field to ask question, then it will go to second interface which is also a paragraph field, where label is the question asked in 1st interface 
 and the value</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Displaying Data</title><link>https://community.appian.com/thread/67689?ContentTypeID=1</link><pubDate>Wed, 26 Jun 2019 07:43:20 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:02e8c7d0-9dbc-44f2-8d30-efcbc788ea24</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Divya&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;First, you do not need to use the pattern you are suggesting. Yes, it would work, but because SAIL is dynamic you can do all this in a single SAIL interface. I&amp;#39;m including&amp;nbsp;the following example not as the answer (because you may have other requirements that I am not aware of), but to help you understand what is possible:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;load(
  local!question,
  local!answer,
  local!listOfQandA: {
  },
  a!columnsLayout(
    columns: {
      a!columnLayout(
        contents:   {
          a!textField(
            label: &amp;quot;Question&amp;quot;,
            value: local!question,
            saveInto: {
              local!question
            }
          ),
          a!paragraphField(
            showWhen: fn!not(fn!isnull(local!question)),
            label: &amp;quot;Answer&amp;quot;,
            value: local!answer,
            saveInto: {
              local!answer
            }
          ),
          a!buttonArrayLayout(
            showWhen: fn!and(
              fn!not(fn!isnull(local!question)),
              fn!not(fn!isnull(local!answer))
              ),
            buttons: {
              a!buttonWidget(
                label: &amp;quot;Add to list&amp;quot;,
                saveInto: {
                  a!save(
                    local!listOfQandA,
                    fn!append(
                      local!listOfQandA,
                      {question: local!question, answer: local!answer}
                    )
                  ),
                  a!save(
                    {local!answer,local!question},
                    null
                  )
                }
              )
            }
          )
        }
      ),
      a!columnLayout(
        contents: {
          a!gridField(
            label: &amp;quot;Questions &amp;amp; Answers&amp;quot;,
            columns: {
              a!gridColumn(
                label: &amp;quot;Question&amp;quot;,
                value: fn!index(fv!row,&amp;quot;question&amp;quot;,null)
              ),
              a!gridColumn(
                label: &amp;quot;Answer&amp;quot;,
                value: fn!index(fv!row,&amp;quot;answer&amp;quot;,null)
              )
            },
            data: local!listOfQandA
          )
        }
      )
    }
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Displaying Data</title><link>https://community.appian.com/thread/67578?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 17:30:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d1d6fa3e-b8a9-4eea-bd4a-42e631ebb2e2</guid><dc:creator>divyak340</dc:creator><description>&lt;p&gt;Hi Mike,&lt;/p&gt;
&lt;p&gt;Thank you for your suggestion.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Displaying Data</title><link>https://community.appian.com/thread/67577?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 17:21:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6b4430f3-f8d3-4667-8f1e-252c88f06ef1</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I would suggest going through at least the Beginner-level material on Appian Academy, if you haven&amp;#39;t already, and perhaps also refer to the Appian Documentation for &lt;a href="https://docs.appian.com/suite/help/19.2/Process_Model_Recipes.html"&gt;process flow recipes&lt;/a&gt; and other advice.&lt;/p&gt;
&lt;p&gt;Your use case seems like a fairly straightforward one, and while it would be hard for anyone here to step you through the entire process, perhaps you could let us know if there are any specific steps where you&amp;#39;re running into issues and we could offer clarification if and where necessary.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>