<?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 Change SASUSERS Permission Secured Folder in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Change-SASUSERS-Permission-Secured-Folder/m-p/867436#M26367</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to change the SASUSERs group permission on a secure folder. I want to choose the 'Select' option by code.&lt;BR /&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;filename dem "...";&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;data _null_;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;file dem;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;UpdateMetadata&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Metadata&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Tree Id='aaaaaaaa.xxxxxxxx'&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;AccessControls&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;AccessControlEntry Name='aaaaaa:xxxxxxxx' ObjRef='aaaaaaaa.xxxxxxxx'&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Permissions&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Permission ObjRef='aaaaaaa.xxxxxxxx'/&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Permissions&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Identities&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;IdentityGroup ObjRef='A5416ZHE.A5000001'/&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Identities&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/AccessControlEntry&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/AccessControls&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Tree&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Metadata&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Reposid&amp;gt;aaaaaaaa.xxxxxxxx&amp;lt;/Reposid&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;NS&amp;gt;SAS&amp;lt;/NS&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Flags&amp;gt;268435456&amp;lt;/Flags&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Options/&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/UpdateMetadata&amp;gt;";run;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;filename rep "...";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;proc metadata verbose &lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;in=dem&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;out=rep;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the code runs without error but nothing moves at the metadata level.&lt;BR /&gt;Thank you for your help.&lt;/P&gt;</description>
    <pubDate>Fri, 31 Mar 2023 12:49:04 GMT</pubDate>
    <dc:creator>ZO_zo</dc:creator>
    <dc:date>2023-03-31T12:49:04Z</dc:date>
    <item>
      <title>Change SASUSERS Permission Secured Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Change-SASUSERS-Permission-Secured-Folder/m-p/867436#M26367</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to change the SASUSERs group permission on a secure folder. I want to choose the 'Select' option by code.&lt;BR /&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;filename dem "...";&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;data _null_;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;file dem;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;UpdateMetadata&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Metadata&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Tree Id='aaaaaaaa.xxxxxxxx'&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;AccessControls&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;AccessControlEntry Name='aaaaaa:xxxxxxxx' ObjRef='aaaaaaaa.xxxxxxxx'&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Permissions&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Permission ObjRef='aaaaaaa.xxxxxxxx'/&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Permissions&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Identities&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;IdentityGroup ObjRef='A5416ZHE.A5000001'/&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Identities&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/AccessControlEntry&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/AccessControls&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Tree&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/Metadata&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Reposid&amp;gt;aaaaaaaa.xxxxxxxx&amp;lt;/Reposid&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;NS&amp;gt;SAS&amp;lt;/NS&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Flags&amp;gt;268435456&amp;lt;/Flags&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;Options/&amp;gt;";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;put "&amp;lt;/UpdateMetadata&amp;gt;";run;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;filename rep "...";&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;proc metadata verbose &lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;in=dem&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;out=rep;&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the code runs without error but nothing moves at the metadata level.&lt;BR /&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 12:49:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Change-SASUSERS-Permission-Secured-Folder/m-p/867436#M26367</guid>
      <dc:creator>ZO_zo</dc:creator>
      <dc:date>2023-03-31T12:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change SASUSERS Permission Secured Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Change-SASUSERS-Permission-Secured-Folder/m-p/867561#M26369</link>
      <description>You may want to use the data step functions instead of an XML update: &lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lrmeta/n1v45aapenzea2n16uw9zg8gcl77.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lrmeta/n1v45aapenzea2n16uw9zg8gcl77.htm&lt;/A&gt;</description>
      <pubDate>Fri, 31 Mar 2023 20:27:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Change-SASUSERS-Permission-Secured-Folder/m-p/867561#M26369</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2023-03-31T20:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change SASUSERS Permission Secured Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Change-SASUSERS-Permission-Secured-Folder/m-p/870360#M26465</link>
      <description>Thanks for your feedback. I will try that.</description>
      <pubDate>Tue, 18 Apr 2023 13:45:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Change-SASUSERS-Permission-Secured-Folder/m-p/870360#M26465</guid>
      <dc:creator>ZO_zo</dc:creator>
      <dc:date>2023-04-18T13:45:59Z</dc:date>
    </item>
  </channel>
</rss>

