<?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 Show Integration Object result to user in Interface?</title><link>https://community.appian.com/discussions/f/integrations/24460/how-to-show-integration-object-result-to-user-in-interface</link><description>I am new to appian. I want to know how to refer integration object to user in interface. In my case user will give his district id and date and he will get all the vaccination center near by him and available slot and type of vaccine. I want to show this</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to Show Integration Object result to user in Interface?</title><link>https://community.appian.com/thread/94435?ContentTypeID=1</link><pubDate>Mon, 02 May 2022 16:13:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ebb10c4a-9d9f-449c-ae74-d5ebc16f7ffd</guid><dc:creator>Jignesh Trivedi</dc:creator><description>&lt;p&gt;Thank You So Much Brother. It worked now these names are coming together can how to show them in row. So I can give proper information in row this is the vaccination center, vaccine type, available slot and fee. So user get proper idea. Can you please help me in that&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/18/Screenshot-_2800_85_2900_.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Show Integration Object result to user in Interface?</title><link>https://community.appian.com/thread/94412?ContentTypeID=1</link><pubDate>Mon, 02 May 2022 13:47:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:19d7712d-0add-4172-8e08-85069fcd2978</guid><dc:creator>vikashk739</dc:creator><description>&lt;p&gt;Hi, the body of your integration call is enveloped with another parameter &amp;quot;sessions&amp;quot;. To refer to any value use fv!row.sessions.fieldName&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!integrationCall: rule!MMP_covidData(district_id: ri!district_id, date: ri!date),
  a!formLayout(
  label: &amp;quot;Form&amp;quot;,
  contents: {
    a!sectionLayout(
      contents: {
        a!textField(
          label: &amp;quot;District&amp;quot;,
          labelPosition: &amp;quot;ABOVE&amp;quot;,
          value: ri!district_id,
          saveInto: ri!district_id,
          refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
          validations: {}
        )
      }
    ),
    a!textField(
      label: &amp;quot;Date&amp;quot;,
      labelPosition: &amp;quot;ABOVE&amp;quot;,
      value: ri!date,
      saveInto: ri!date,
      refreshAfter: &amp;quot;UNFOCUS&amp;quot;,
      validations: {}
    ),
    a!sectionLayout(
      label: &amp;quot;&amp;quot;,
      contents: {
        a!gridField(
          label: &amp;quot;Read-only Grid&amp;quot;,
          labelPosition: &amp;quot;ABOVE&amp;quot;,
          data: local!integrationCall.result.body,
          columns: {
            a!gridColumn(
              label: &amp;quot;Center Name&amp;quot;,
              value: fv!row.sessions.name
            ),
            a!gridColumn(
              label: &amp;quot;District Name&amp;quot;,
              value: fv!row.sessions.district_name
            )
          },
          validations: {}
        )
      }
    )
  },
  buttons: a!buttonLayout(
    primaryButtons: {
      a!buttonWidget(
        label: &amp;quot;Submit&amp;quot;,
        submit: true,
        style: &amp;quot;PRIMARY&amp;quot;
      )
    },
    secondaryButtons: {
      a!buttonWidget(
        label: &amp;quot;Cancel&amp;quot;,
        value: true,
        saveInto: ri!cancel,
        submit: true,
        style: &amp;quot;NORMAL&amp;quot;,
        validate: false
      )
    }
  )
)
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;You can refer to this code, I have used different Integration name so please don&amp;#39;t get confused.&lt;/p&gt;
&lt;p&gt;Please refer the gridColumn part&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/18/covid-data.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Show Integration Object result to user in Interface?</title><link>https://community.appian.com/thread/94409?ContentTypeID=1</link><pubDate>Mon, 02 May 2022 12:49:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a8d68300-2861-436b-b7ce-f5db59ffa64d</guid><dc:creator>Jignesh Trivedi</dc:creator><description>&lt;p&gt;See I have done as you said but not getting it please help me. I am pasting the code here tell me where do i need to change&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;a!localVariables(&lt;br /&gt; local!result: rule!CVMS_vaccinationCenter_INT(district_id: ri!district_id,date: ri!date),&lt;br /&gt; &lt;br /&gt; a!formLayout(&lt;br /&gt; label: &amp;quot;Form&amp;quot;,&lt;br /&gt; contents: {&lt;br /&gt; a!textField(&lt;br /&gt; label: &amp;quot;Enter Your District Id&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; value: ri!district_id,&lt;br /&gt; saveInto: ri!district_id,&lt;br /&gt; refreshAfter: &amp;quot;UNFOCUS&amp;quot;,&lt;br /&gt; required: true,&lt;br /&gt; validations: {}&lt;br /&gt; ),&lt;br /&gt; a!textField(&lt;br /&gt; label: &amp;quot;Enter The Date for which want to check availability&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; placeholder: &amp;quot;DD-MM-YYYY&amp;quot;,&lt;br /&gt; value: ri!date,&lt;br /&gt; saveInto: ri!date,&lt;br /&gt; refreshAfter: &amp;quot;UNFOCUS&amp;quot;,&lt;br /&gt; required: true,&lt;br /&gt; validations: {}&lt;br /&gt; ),&lt;br /&gt; a!gridField(&lt;br /&gt; label: &amp;quot;Read-only Grid&amp;quot;,&lt;br /&gt; labelPosition: &amp;quot;ABOVE&amp;quot;,&lt;br /&gt; data: local!result.result.body,&lt;br /&gt; columns: {&lt;br /&gt; a!gridColumn(&lt;br /&gt; label: &amp;quot;Center Name&amp;quot;,&lt;br /&gt; value: proper(fv!row.name)&lt;br /&gt; )&lt;br /&gt; },&lt;br /&gt; pageSize: null,&lt;br /&gt; pagingSaveInto: local!result,&lt;br /&gt; validations: {}&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; submit: true,&lt;br /&gt; style: &amp;quot;PRIMARY&amp;quot;,&lt;br /&gt; loadingIndicator: true&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: {},&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 Show Integration Object result to user in Interface?</title><link>https://community.appian.com/thread/94408?ContentTypeID=1</link><pubDate>Mon, 02 May 2022 11:27:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5e20d61a-e2cf-4d6c-b7c9-8ad5018a8c93</guid><dc:creator>vikashk739</dc:creator><description>&lt;p&gt;Hi, you need to configure the fields for the grid properly&lt;pre class="ui-code" data-mode="text"&gt;a!gridField(
  label: &amp;quot;Read Only Grid&amp;quot;,
  labelPosition: &amp;quot;ABOVE&amp;quot;,
  data: local!result.result.body, 
  columns: {
    a!gridColumn(
      label: &amp;quot;Center Name&amp;quot;, 
      value: proper(fv!row.name)
      )
      }
    )
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;You need to call the Integration body. Since integration is stored in local!result then to get the body call like local!result.result.body&lt;/p&gt;
&lt;p&gt;If any further issues, let us know&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Show Integration Object result to user in Interface?</title><link>https://community.appian.com/thread/94387?ContentTypeID=1</link><pubDate>Sun, 01 May 2022 08:37:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4dda0831-97a8-421f-9f0c-8c6b5b8c0683</guid><dc:creator>GopalK</dc:creator><description>&lt;p&gt;You have not configured configured columns in your grid. You need to understand how to configure read only grid first. Please go through the link below,&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.appian.com/suite/help/22.1/Paging_Grid_Component.html"&gt;https://docs.appian.com/suite/help/22.1/Paging_Grid_Component.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;in data parameter , pass your integration output.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Show Integration Object result to user in Interface?</title><link>https://community.appian.com/thread/94386?ContentTypeID=1</link><pubDate>Sun, 01 May 2022 08:13:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:91012c49-4a25-4b33-b6de-6dd70c259ed2</guid><dc:creator>Jignesh Trivedi</dc:creator><description>&lt;p&gt;As you said I have used local variable and called the integration object and passed the rule input. Now I am getting that result in local variable. Now I have used read only grid inside read-only grid selected the variable and passed local variable to it. But it is not showing the data. I want to show in a proper way that these are the vaccination centers name near by you then vaccine available in that center and availabile slot. I tried but the data is not showing in read only grid as i am new i am facing issue in this please help me&amp;nbsp;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/18/Screenshot-_2800_77_2900_.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to Show Integration Object result to user in Interface?</title><link>https://community.appian.com/thread/94379?ContentTypeID=1</link><pubDate>Sun, 01 May 2022 05:24:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c9dd01e5-6cef-4e3c-b1d3-6899cb05a7bc</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;In a local variable, call the integration rule and pass the Ri or local variable in which you&amp;#39;re storing the user&amp;#39;s input.&amp;nbsp;&lt;br /&gt;Then use that variable to show the result using various Appian objects like Grid, RichText etc.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>