<?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>select a user data by using piker field and auto populated user details in inline grid</title><link>https://community.appian.com/discussions/f/new-to-appian/23921/select-a-user-data-by-using-piker-field-and-auto-populated-user-details-in-inline-grid</link><description>i need to select user by using piker fields and auto populated the details (email, user name and Name) and saved into a inline grid</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: select a user data by using piker field and auto populated user details in inline grid</title><link>https://community.appian.com/thread/92064?ContentTypeID=1</link><pubDate>Thu, 10 Mar 2022 08:23:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b35fb6ce-4678-43b2-b287-6269657fdba7</guid><dc:creator>Kalyan alladi</dc:creator><description>&lt;p&gt;thank you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: select a user data by using piker field and auto populated user details in inline grid</title><link>https://community.appian.com/thread/92027?ContentTypeID=1</link><pubDate>Wed, 09 Mar 2022 15:16:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c7e35a74-79b8-4378-97d9-641a721f83d1</guid><dc:creator>normanc</dc:creator><description>&lt;p&gt;For example...&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!user,
  local!pgInfo: a!pagingInfo(startIndex: 1, batchSize: 1),
  local!dataSet: todatasubset(local!user, local!pgInfo),
  {
    a!pickerFieldUsers(
      label: &amp;quot;User&amp;quot;,
      value: local!user,
      saveInto: local!user,
      maxSelections: 1
    ),
    a!gridField(
      columns: a!forEach(
        items: { &amp;quot;email&amp;quot;, &amp;quot;firstName&amp;quot;, &amp;quot;lastName&amp;quot; },
        expression: a!gridColumn(
          label: proper(fv!item),
          value: user(fv!row, fv!item)
        )
      ),
      data: local!dataSet,
      pagingSaveInto: local!pgInfo,
      showWhen: not(a!isNullOrEmpty(local!user))
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: select a user data by using piker field and auto populated user details in inline grid</title><link>https://community.appian.com/thread/92025?ContentTypeID=1</link><pubDate>Wed, 09 Mar 2022 14:52:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4b77e394-99f4-40d7-ad73-58d2c979ca3c</guid><dc:creator>GopalK</dc:creator><description>&lt;p&gt;Hi Kalyan, you can use following approach to implement your requirement.&lt;/p&gt;
&lt;p&gt;1. Once u select any value from picker ,save the identifier in a local variable.&lt;/p&gt;
&lt;p&gt;2. Using this identifier , query your data using query entity.&lt;/p&gt;
&lt;p&gt;3. Once you get the data , show these details in the &amp;nbsp;grid. &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>