<?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 user email id in interface configuration.</title><link>https://community.appian.com/discussions/f/general/17740/how-to-show-user-email-id-in-interface-configuration</link><description>I am having a scenario, as a part of my requirement i need to show user email only my interface. I created picker user/ group. its shows names. but i want to show email for user my interface.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to show user email id in interface configuration.</title><link>https://community.appian.com/thread/69910?ContentTypeID=1</link><pubDate>Mon, 14 Oct 2019 06:26:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1b2153ef-effb-4878-b53a-9e54bc4f66b4</guid><dc:creator>yogalakshmia962829</dc:creator><description>&lt;p&gt;If the user email to be shown instead of a name in the picker, then custom picker can be used instead of a user picker.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to show user email id in interface configuration.</title><link>https://community.appian.com/thread/69856?ContentTypeID=1</link><pubDate>Thu, 10 Oct 2019 12:26:59 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:46029b45-49ba-4fce-8a1f-c01e75565b7a</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;You cannot configure the User Picker to display the email address in place of the User&amp;#39;s &amp;#39;display name&amp;#39;, but you could derive the email address as suggested by the other responses, and display that as an additional piece of data in the form:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1570710420798v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;{
  a!columnsLayout(
    columns: {
      a!columnLayout(
        width: &amp;quot;NARROW_PLUS&amp;quot;,
        contents: {
          a!pickerFieldUsers(
            instructions: if(
              isnull(ri!selectedUser),
              null,
              fn!user(ri!selectedUser,&amp;quot;email&amp;quot;)
            ),
            label: &amp;quot;User Picker&amp;quot;,
            labelPosition: &amp;quot;ABOVE&amp;quot;,
            value: ri!selectedUser,
            saveInto: {
              ri!selectedUser
            },
            validations: {}
          )
        }
      )
    }
  )
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to show user email id in interface configuration.</title><link>https://community.appian.com/thread/69845?ContentTypeID=1</link><pubDate>Thu, 10 Oct 2019 06:56:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a6c6f5c7-f8b1-4647-81a7-9895a87c7a35</guid><dc:creator>chandhinir</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You can use&amp;nbsp;user(ri!userId,&amp;quot;email&amp;quot;) to get the email of an user&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to show user email id in interface configuration.</title><link>https://community.appian.com/thread/69844?ContentTypeID=1</link><pubDate>Thu, 10 Oct 2019 06:54:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:dd94ded1-d73a-4d9e-9f17-b7cb6ece2477</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;You can get the email of the entered user using&amp;nbsp;&lt;strong&gt;user()&lt;/strong&gt; function. You can add a text field below the user picker field where email can be displayed.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;user(loggedInUser(),&amp;quot;email&amp;quot;)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>