<?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 Metadata Details via EG in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717609#M21507</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there is any way to get the following details from metadata via SAS EG?&lt;/P&gt;&lt;P&gt;User name&lt;/P&gt;&lt;P&gt;Group details and also associated user under group (for example&amp;nbsp; sassrv link to sas general server group.&lt;/P&gt;</description>
    <pubDate>Mon, 08 Feb 2021 15:54:09 GMT</pubDate>
    <dc:creator>japsas100</dc:creator>
    <dc:date>2021-02-08T15:54:09Z</dc:date>
    <item>
      <title>Metadata Details via EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717609#M21507</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there is any way to get the following details from metadata via SAS EG?&lt;/P&gt;&lt;P&gt;User name&lt;/P&gt;&lt;P&gt;Group details and also associated user under group (for example&amp;nbsp; sassrv link to sas general server group.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 15:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717609#M21507</guid>
      <dc:creator>japsas100</dc:creator>
      <dc:date>2021-02-08T15:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Metadata Details via EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717619#M21508</link>
      <description>&lt;P&gt;There are several ways to obtain this information, but I think a good starting point is the SAS blog post: "&lt;A href="https://blogs.sas.com/content/sgf/2016/01/13/sas-administrators-tip-keeping-track-of-sas-users/" target="_blank" rel="noopener"&gt;SAS administrators tip: Keeping track of SAS users&lt;/A&gt;".&lt;/P&gt;
&lt;P&gt;NOTE: Be aware that the outcome is dependant on the access that you have to metadata. In other words if the account that you are using is not allowed to "see" all users that will be reflected in the outcome.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 16:02:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717619#M21508</guid>
      <dc:creator>Resa</dc:creator>
      <dc:date>2021-02-08T16:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Metadata Details via EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717649#M21509</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13592"&gt;@Resa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for prompt reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I run this script, I noticed, I missed the sassrv user defined in&amp;nbsp;&lt;SPAN&gt;SAS&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;General&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;Servers&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;group. Could you please help how to add the missing user in final output?&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 16:55:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717649#M21509</guid>
      <dc:creator>japsas100</dc:creator>
      <dc:date>2021-02-08T16:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Metadata Details via EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717663#M21510</link>
      <description>&lt;P&gt;The provided code reports on users and their associated identities. The SAS General Servers account is a group identity, so if you want to report on logins and their associated identity (Person or Group) you would want to change the merge DATA step accordingly. Maybe:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.metadata_logins (drop=keyid) ;
merge
work.logins (keep=keyid UserID)
work.group_info (keep=id name DisplayName desc in=user rename=(id=keyid desc=description))
work.person (keep=keyid name DisplayName description in=user)
;
by keyid;
if userid ne "";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Feb 2021 17:25:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717663#M21510</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2021-02-08T17:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Metadata Details via EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717947#M21515</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/124001"&gt;@japsas100&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Did&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/78975"&gt;@gwootton&lt;/a&gt;&amp;nbsp;replied to your question sufficiently?&lt;/P&gt;
&lt;P&gt;Just want to make sure you have been able to retrieve the information that you were looking for.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 17:00:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Metadata-Details-via-EG/m-p/717947#M21515</guid>
      <dc:creator>Resa</dc:creator>
      <dc:date>2021-02-09T17:00:05Z</dc:date>
    </item>
  </channel>
</rss>

