<?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 Masking Stored Process Code for EG Users? in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120643#M3896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to either mask the sas code of a stored process for an EG user OR prevent them from looking at its metadata while still allowing them to run it...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 May 2012 16:18:27 GMT</pubDate>
    <dc:creator>kruzewski</dc:creator>
    <dc:date>2012-05-18T16:18:27Z</dc:date>
    <item>
      <title>Masking Stored Process Code for EG Users?</title>
      <link>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120643#M3896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to either mask the sas code of a stored process for an EG user OR prevent them from looking at its metadata while still allowing them to run it...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 16:18:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120643#M3896</guid>
      <dc:creator>kruzewski</dc:creator>
      <dc:date>2012-05-18T16:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Masking Stored Process Code for EG Users?</title>
      <link>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120644#M3897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose one way to hide the "source code" of a stored process would be to have the actual stored process be just a macro call.&amp;nbsp; Then macro definition could be stored in another file, or even a compiled macro catalog, or similar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 16:50:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120644#M3897</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2012-05-18T16:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Masking Stored Process Code for EG Users?</title>
      <link>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120645#M3898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wouldn't the user still need access to the "source code" of the macro?....btw, I wanted to create a SP which would allow an end user to kill their own sessions if something hangs, BUT I don't want them to know how to run an x command on the windows server...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 16:56:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120645#M3898</guid>
      <dc:creator>kruzewski</dc:creator>
      <dc:date>2012-05-18T16:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Masking Stored Process Code for EG Users?</title>
      <link>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120646#M3899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the server, you can compile the macro and store the definition in a permanent macro catalog.&amp;nbsp; In v9.2, you can even encrypt the compiled catalog, but that may be overkill for your needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See &lt;A href="http://support.sas.com/techsup/technote/ts739.pdf"&gt;http://support.sas.com/techsup/technote/ts739.pdf&lt;/A&gt;, search for SECURE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the only thing on the server the user needs read access to is the encrypted macro catalog holding the definition of %KillSession(). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pretty sure that should work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure what you will put as the definition of %KillSession(), or how the stored process server or workspace server will feel to have somebody else killing jobs...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 17:50:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120646#M3899</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2012-05-18T17:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Masking Stored Process Code for EG Users?</title>
      <link>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120647#M3900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just key it off of &amp;amp;sysuser. so they they are only able to kill their own&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 18:20:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120647#M3900</guid>
      <dc:creator>kruzewski</dc:creator>
      <dc:date>2012-05-18T18:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Masking Stored Process Code for EG Users?</title>
      <link>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120648#M3901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;...and thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 18:22:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Masking-Stored-Process-Code-for-EG-Users/m-p/120648#M3901</guid>
      <dc:creator>kruzewski</dc:creator>
      <dc:date>2012-05-18T18:22:12Z</dc:date>
    </item>
  </channel>
</rss>

