<?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>Related action in read only grid</title><link>https://community.appian.com/discussions/f/data/29829/related-action-in-read-only-grid</link><description>Hi All, 
 I have a scenario where i have to populate related action in one of the column in read only grid. For instance, the row with identifier 1 i will populate related action for identifier 2 in that specific column. The issue am facing is that even</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118426?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 13:59:04 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d78beec7-988a-42ab-a077-da524febc5e1</guid><dc:creator>Capt_Barbosa</dc:creator><description>&lt;p&gt;Sure Peter. Thanks for the suggestion&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118425?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 13:57:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4afefdb9-bdf0-49bb-918b-e3cebf346cec</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;I can reproduce this behavior - I&amp;#39;d suggest opening a case with Appian Support to have them investigate this further.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118419?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 12:33:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:56e5babd-303f-4941-85ee-3457131e16cc</guid><dc:creator>Capt_Barbosa</dc:creator><description>&lt;p&gt;Hi LakshmiRaja,&lt;/p&gt;
&lt;p&gt;Thanks for your response. Actually its nothing to do with +1 logic. I think i have confused everyone by adding +1 to the identifier for other column.&amp;nbsp;&lt;br /&gt;&lt;strong&gt;The reason i put +1 is to show that am giving different value as identifier other than the row identifier&lt;/strong&gt;. The identifier can be any value, but problem am facing here is the display name of the RA which is showing corresponding row identifier&amp;#39;s RA display name. Even though I pass different identifier for that column.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118418?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 12:26:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f53129b3-ef58-45e0-bbce-c4980ad67f35</guid><dc:creator>SOMU LAKSHMI RAJA</dc:creator><description>&lt;p&gt;Corrected your code, Please verify in your interface&lt;br /&gt;For identifier we can directly pass fv!row &amp;quot;+1&amp;quot; is not required for identifier.&lt;br /&gt;&lt;pre class="ui-code" data-mode="d"&gt;a!gridField(
  emptyGridMessage: &amp;quot;No data available&amp;quot;,
  data: a!recordData(
    recordType: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}&amp;#39;,
    filters: {
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.fields.{2d7edaf4-3e40-41c0-a89a-6f3995670e0e}&amp;#39;,
        value: true()
      ),
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.fields.{259fe683-f6b2-40b5-a60a-d9f9dc27872e}&amp;#39;,
        value: cons!RLM_LOOKUP_DATA_157
      )
    }
  ),
  columns: {
    a!gridColumn(
      label: &amp;quot;Loan Number Identifier&amp;quot;,
      value: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.fields.{1f75d98b-f357-4136-82a7-bf333120f592}&amp;#39;]
    ),
    a!gridColumn(
      label: &amp;quot;Loan number&amp;quot;,
      sortField: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.fields.{6a018376-f831-413a-af07-3cbbd02d619d}&amp;#39;,
      value: a!recordActionField(
        actions: a!recordActionItem(
          action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}&amp;#39;,
          identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.fields.{1f75d98b-f357-4136-82a7-bf333120f592}&amp;#39;]
        ),
        style: &amp;quot;LINKS&amp;quot;,
        display: &amp;quot;LABEL&amp;quot;
      )
    ),
    a!gridColumn(
      label: &amp;quot;Related Loans Identifier&amp;quot;,
      value: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.fields.{1f75d98b-f357-4136-82a7-bf333120f592}&amp;#39;] + 1
    ),
    a!gridColumn(
      label: &amp;quot;Related Loans&amp;quot;,
      value: a!recordActionField(
        actions: a!recordActionItem(
          action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}&amp;#39;,
          identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}.fields.{1f75d98b-f357-4136-82a7-bf333120f592}&amp;#39;]
        ),
        style: &amp;quot;LINKS&amp;quot;,
        display: &amp;quot;LABEL&amp;quot;
      )
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118383?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 09:19:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e928d261-9ceb-4288-9c38-627b8cbab544</guid><dc:creator>Capt_Barbosa</dc:creator><description>&lt;p&gt;Apologies for the confusion. My bad ;-)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118382?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 09:13:13 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2875f3b6-8a78-4148-866a-40dfb7006397</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;The problem with that &amp;quot;+1&amp;quot; logic is, that it complicates the whole topic unnecessarily. And you want others to be able to reproduce that issue easily.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118381?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 09:07:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:84ce1a0d-a85a-484a-813d-0cace39089c6</guid><dc:creator>Capt_Barbosa</dc:creator><description>&lt;p&gt;To demonstrate am using +1 logic in all columns. Sharing code below&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!gridField(
  emptyGridMessage: &amp;quot;No data available&amp;quot;,
  data: a!recordData(
    recordType: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details&amp;#39;,
    filters: {
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{2d7edaf4-3e40-41c0-a89a-6f3995670e0e}isActive&amp;#39;,
        value: true()
      ),
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{259fe683-f6b2-40b5-a60a-d9f9dc27872e}milestone&amp;#39;,
        value: cons!RLM_LOOKUP_DATA_157
      )
    },

  ),
  columns: {
    a!gridColumn(
      label: &amp;quot;Loan Number Identifier&amp;quot;,
      value: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;]
    ),
    a!gridColumn(
      label: &amp;quot;Loan number&amp;quot;,
      sortField: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{6a018376-f831-413a-af07-3cbbd02d619d}loanNumber&amp;#39;,
      value: a!recordActionField(
        actions: a!recordActionItem(
          action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}displayLoanSummary&amp;#39;,
          identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;]
        ),
        style: &amp;quot;LINKS&amp;quot;,
        display: &amp;quot;LABEL&amp;quot;
      )
    ),
    a!gridColumn(
      label: &amp;quot;Related Loans Identifier&amp;quot;,
      value: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;] + 1
    ),
    a!gridColumn(
      label: &amp;quot;Related Loans&amp;quot;,
      value: a!recordActionField(
        actions: a!recordActionItem(
          action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}displayLoanSummary&amp;#39;,
          identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;] + 1
        ),
        style: &amp;quot;LINKS&amp;quot;,
        display: &amp;quot;LABEL&amp;quot;
      ),

    )
  },

)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;It doesn&amp;#39;t need to be adding +1 to identifier. Even if i pass any&amp;nbsp;random identifier for related action, the display name of RA remains same like specific row&amp;#39;s RA.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118379?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 08:59:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e7b75820-332f-460e-80de-ef5ae522cb6e</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Does any of these columns include your &amp;quot;+1&amp;quot; logic?&lt;/p&gt;
&lt;p&gt;&lt;a href="/members/peter.lewis"&gt;Peter Lewis&lt;/a&gt;, is that something you can help us with? It really seems weird.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118378?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 08:44:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:94542f72-ec20-4aa5-8e4d-cb6ac6e43d69</guid><dc:creator>Capt_Barbosa</dc:creator><description>&lt;p&gt;Not sure if i understood what you mentioned. Anyway I have populated corresponding identifier in separate columns to understand what am passing as identifier for RA. In first row, even it is different identifier, RA display name is same.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/16/pastedimage1693471342622v1.png" /&gt;&lt;br /&gt;Please let me know if this is helpful&lt;br /&gt;&lt;br /&gt;If i just change the source of data by using a!queryrecordtype instead of a!record data, am getting desired result as shown below&lt;br /&gt;&lt;br /&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/16/pastedimage1693471678294v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118377?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 08:19:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6a7f47b7-f942-4574-925b-9600309b83f3</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Did you try to just display the values outside a record action?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118371?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 07:31:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:15e89cd5-e6a5-4bcf-a63b-4ccbc49808bf</guid><dc:creator>Capt_Barbosa</dc:creator><description>[quote userid="59361" url="~/discussions/f/data/29829/related-action-in-read-only-grid/118369#118369"]&lt;p&gt;a!recordData is not meant to be used outside of grids. Reference:&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.3/fnc_system_recorddata.html#usage-considerations"&gt;docs.appian.com/.../fnc_system_recorddata.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;[/quote]
&lt;p&gt;Yes.&amp;nbsp; I just declared in local variable and using it in data parameter of read only grid. Even if i directly put a!recordData in data parameter am facing the same issue.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
[quote userid="59361" url="~/discussions/f/data/29829/related-action-in-read-only-grid/118369#118369"]Why do you increase the identifier by 1?[/quote]
&lt;p&gt;I just showed the example. Even if the identifier is changed, the related action display name is not changing if we are using a!recordData as grid source.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118369?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 07:24:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8eac2b8e-58a6-46cf-a72f-c108e166ba60</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;a!recordData is not meant to be used outside of grids. Reference:&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/23.3/fnc_system_recorddata.html#usage-considerations"&gt;docs.appian.com/.../fnc_system_recorddata.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Why do you increase the identifier by 1?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118367?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 07:13:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:99c28f4b-cccd-47ab-a796-ab0f7669417e</guid><dc:creator>Capt_Barbosa</dc:creator><description>&lt;p&gt;Data: a!query record type&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!rlmLoanDetails: a!queryRecordType(
    recordType: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details&amp;#39;,
    filters: {
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{2d7edaf4-3e40-41c0-a89a-6f3995670e0e}isActive&amp;#39;,
        value: true()
      ),
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{259fe683-f6b2-40b5-a60a-d9f9dc27872e}milestone&amp;#39;,
        value: cons!RLM_LOOKUP_DATA_157
      )
    },
    pagingInfo: a!pagingInfo(1,5000),
    fields: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.relationships.{4a143561-e223-467d-bb67-c8ee80ed07c0}rlmAdditionalLoanDetail.fields.{6e0272c7-3872-44f0-a65b-d1889e68d550}leadLoan&amp;#39;
  ).data,

  a!sectionLayout(
    label: &amp;quot;Managed Loan&amp;quot;,
    contents: a!gridField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      emptyGridMessage: &amp;quot;No data available&amp;quot;,
      data: local!rlmLoanDetails,
      columns: {
        a!gridColumn(
          label: &amp;quot;Loan number&amp;quot;,
          sortField: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{6a018376-f831-413a-af07-3cbbd02d619d}loanNumber&amp;#39;,
          value: a!recordActionField(
            actions: a!recordActionItem(
              action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}displayLoanSummary&amp;#39;,
              identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;]
            ),
            style: &amp;quot;LINKS&amp;quot;,
            display: &amp;quot;LABEL&amp;quot;
          )
        ),

        a!gridColumn(
          label: &amp;quot;Related Loans&amp;quot;,
          value: 
            a!recordActionField(
              actions:  a!recordActionItem(
                  action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}displayLoanSummary&amp;#39;,
                  identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;]+1
                ),
                style: &amp;quot;LINKS&amp;quot;,
                display: &amp;quot;LABEL&amp;quot;
              ),
             
          )
       
      
       
      },
      refreshAlways: true(),
      refreshAfter: &amp;quot;RECORD_ACTION&amp;quot;,
      pageSize: cons!ACO_GRID_SIZE_TINY
    ),
    isCollapsible: true()
  )
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Result&lt;br /&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/16/pastedimage1693465665064v1.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Data: a!recordData&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!rlmLoanDetails: a!recordData(
    recordType: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details&amp;#39;,
    filters: {
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{2d7edaf4-3e40-41c0-a89a-6f3995670e0e}isActive&amp;#39;,
        value: true()
      ),
      rule!ACO_filterEqualsOrIn(
        field: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{259fe683-f6b2-40b5-a60a-d9f9dc27872e}milestone&amp;#39;,
        value: cons!RLM_LOOKUP_DATA_157
      )
    },

  ),

  a!sectionLayout(
    label: &amp;quot;Managed Loan&amp;quot;,
    contents: a!gridField(
      labelPosition: &amp;quot;COLLAPSED&amp;quot;,
      emptyGridMessage: &amp;quot;No data available&amp;quot;,
      data: local!rlmLoanDetails,
      columns: {
        a!gridColumn(
          label: &amp;quot;Loan number&amp;quot;,
          sortField: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{6a018376-f831-413a-af07-3cbbd02d619d}loanNumber&amp;#39;,
          value: a!recordActionField(
            actions: a!recordActionItem(
              action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}displayLoanSummary&amp;#39;,
              identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;]
            ),
            style: &amp;quot;LINKS&amp;quot;,
            display: &amp;quot;LABEL&amp;quot;
          )
        ),

        a!gridColumn(
          label: &amp;quot;Related Loans&amp;quot;,
          value: 
            a!recordActionField(
              actions:  a!recordActionItem(
                  action: &amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.actions.{05cd73c9-ce7f-4dc4-8b3f-5d00258e9b6b}displayLoanSummary&amp;#39;,
                  identifier: fv!row[&amp;#39;recordType!{b4241a8a-8490-4326-9a66-74ae61f7935f}RLM Loan Details.fields.{1f75d98b-f357-4136-82a7-bf333120f592}rlmId&amp;#39;]+1
                ),
                style: &amp;quot;LINKS&amp;quot;,
                display: &amp;quot;LABEL&amp;quot;
              ),
             
          )
       
      
       
      },
      refreshAlways: true(),
      refreshAfter: &amp;quot;RECORD_ACTION&amp;quot;,
      pageSize: cons!ACO_GRID_SIZE_TINY
    ),
    isCollapsible: true()
  )
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Result&lt;br /&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/16/pastedimage1693465831393v2.png" /&gt;&lt;br /&gt;&lt;br /&gt;Am getting same related action label name when am using a!recorddata even though am passing correct identifier. But only label is showing in wrong way, when i click on RA i could open the correct RA.&lt;br /&gt;&lt;br /&gt;Not sure why RA label not displaying properly when using a!recordData as source.&lt;/p&gt;
&lt;p&gt;Below is the way i have configured RA&amp;nbsp;Display name&lt;br /&gt;&lt;br /&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/16/pastedimage1693466220404v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118362?ContentTypeID=1</link><pubDate>Thu, 31 Aug 2023 05:39:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b7c24945-ebb1-40c4-8ae6-40c48b8b2584</guid><dc:creator>SOMU LAKSHMI RAJA</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;br /&gt;Please try below logic in Interface&lt;br /&gt;&lt;pre class="ui-code" data-mode="d"&gt;a!cardLayout(
  contents: a!gridField(
    data: &amp;#39;recordType!{1e3f625b-dbca-4db6-969b-950bb182955b}AIS Request&amp;#39;,
    columns: {
      a!gridColumn(
        label: &amp;quot;Request ID&amp;quot;,
        sortField: &amp;#39;recordType!{1e3f625b-dbca-4db6-969b-950bb182955b}AIS Request.fields.{c40cd374-cceb-4121-86ce-7375ae9c0c4d}id&amp;#39;,
        align: &amp;quot;CENTER&amp;quot;,
        value: a!recordActionField(
          display: &amp;quot;ICON&amp;quot;,
          actions: a!recordActionItem(
            action: &amp;#39;recordType!{1e3f625b-dbca-4db6-969b-950bb182955b}AIS Request.actions.{bf974385-c2a4-4c1d-8adb-b712ae80282f}updateRequest&amp;#39;,
            identifier: fv!row[&amp;#39;recordType!{1e3f625b-dbca-4db6-969b-950bb182955b}AIS Request.fields.{c40cd374-cceb-4121-86ce-7375ae9c0c4d}id&amp;#39;]
          )
        )
      ),
      a!gridColumn(
        label: &amp;quot;Description&amp;quot;,
        sortField: &amp;#39;recordType!{1e3f625b-dbca-4db6-969b-950bb182955b}AIS Request.fields.{efca005e-588c-4c84-b7e9-d2d972fa9c74}description&amp;#39;,
        value: fv!row[&amp;#39;recordType!{1e3f625b-dbca-4db6-969b-950bb182955b}AIS Request.fields.{efca005e-588c-4c84-b7e9-d2d972fa9c74}description&amp;#39;]
      )
    },
    validations: {},
    refreshAfter: &amp;quot;RECORD_ACTION&amp;quot;,
    showSearchBox: true,
    showRefreshButton: true,
    recordActions: {
      a!recordActionItem(
        action: &amp;#39;recordType!{1e3f625b-dbca-4db6-969b-950bb182955b}AIS Request.actions.{9fa223ca-faa8-4d94-bcca-1dae1b2f71a4}newRequest&amp;#39;
      )
    }
  ),
  shape: &amp;quot;ROUNDED&amp;quot;,
  showShadow: true
)&lt;/pre&gt;&lt;br /&gt;Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Related action in read only grid</title><link>https://community.appian.com/thread/118350?ContentTypeID=1</link><pubDate>Wed, 30 Aug 2023 18:19:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:194b81eb-9651-4b97-ad49-598c94976cc1</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Can you share some code snippets and a screen shot?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>