<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Get list of all users email address from metadata in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830510#M24946</link>
    <description>&lt;P&gt;Any time I need user related metadata I normally take the quick and easy way and use the SAS supplied macro %MDUEXTR. It probably gives you more than you need but it saves an awful lot of coding. Do it as a first step in a EG project and the rest will be clever joining, filtering and reporting on the resulting tables. In code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%MDUEXTR(LIBREF=WORK);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of the resulting tables is EMAIL (all have obvious names) that can be joined with others, like PERSONS, for additional context.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;- Jan.&lt;/P&gt;</description>
    <pubDate>Fri, 26 Aug 2022 09:02:24 GMT</pubDate>
    <dc:creator>jklaverstijn</dc:creator>
    <dc:date>2022-08-26T09:02:24Z</dc:date>
    <item>
      <title>Get list of all users email address from metadata</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830243#M24939</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any SAS code that can helps us retrieve email address of all users declared in the metadata?&lt;/P&gt;&lt;P&gt;Dunno by accessing the PERSON, EMAIl, etc... table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Than]king you in advance for help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Akshay&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 08:15:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830243#M24939</guid>
      <dc:creator>Akshay1005</dc:creator>
      <dc:date>2022-08-25T08:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all users email address from metadata</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830245#M24940</link>
      <description>Did you see the threads &lt;A href="https://communities.sas.com/t5/Administration-and-Deployment/Querying-the-metadata-for-a-list-of-users-and-groups/td-p/391924" target="_blank"&gt;https://communities.sas.com/t5/Administration-and-Deployment/Querying-the-metadata-for-a-list-of-users-and-groups/td-p/391924&lt;/A&gt; &amp;amp; &lt;A href="https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-my-email-address-from-metadata/td-p/511032" target="_blank"&gt;https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-my-email-address-from-metadata/td-p/511032&lt;/A&gt;. See also documentation: &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lrmeta/p1kjy5liyi86w8n1vfopazyeb70u.htm#n1wj0hcob337akn1lhikm4bh7f8w" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lrmeta/p1kjy5liyi86w8n1vfopazyeb70u.htm#n1wj0hcob337akn1lhikm4bh7f8w&lt;/A&gt;</description>
      <pubDate>Thu, 25 Aug 2022 08:52:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830245#M24940</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2022-08-25T08:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all users email address from metadata</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830287#M24942</link>
      <description>Does this program give you what you need?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/greg-wootton/sas-programs/blob/main/Metadata%20Management/get_emails.sas" target="_blank"&gt;https://github.com/greg-wootton/sas-programs/blob/main/Metadata%20Management/get_emails.sas&lt;/A&gt;</description>
      <pubDate>Thu, 25 Aug 2022 13:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830287#M24942</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2022-08-25T13:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Get list of all users email address from metadata</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830510#M24946</link>
      <description>&lt;P&gt;Any time I need user related metadata I normally take the quick and easy way and use the SAS supplied macro %MDUEXTR. It probably gives you more than you need but it saves an awful lot of coding. Do it as a first step in a EG project and the rest will be clever joining, filtering and reporting on the resulting tables. In code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%MDUEXTR(LIBREF=WORK);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of the resulting tables is EMAIL (all have obvious names) that can be joined with others, like PERSONS, for additional context.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;- Jan.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 09:02:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Get-list-of-all-users-email-address-from-metadata/m-p/830510#M24946</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2022-08-26T09:02:24Z</dc:date>
    </item>
  </channel>
</rss>

