<?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: Making Program in Editor Read-Only in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180992#M46100</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the operating system's access control. (my preferred method for .sas files).&lt;/P&gt;&lt;P&gt;If it is part of an EG project, save the project in a folder in the metadata and set the access rights there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2014 05:41:29 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2014-04-16T05:41:29Z</dc:date>
    <item>
      <title>Making Program in Editor Read-Only</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180991#M46099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now that I've slaved over code that other people will use, can I make it a read-only file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want people to save a copy in order to edit the export query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 00:15:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180991#M46099</guid>
      <dc:creator>Tegan</dc:creator>
      <dc:date>2014-04-16T00:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Making Program in Editor Read-Only</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180992#M46100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the operating system's access control. (my preferred method for .sas files).&lt;/P&gt;&lt;P&gt;If it is part of an EG project, save the project in a folder in the metadata and set the access rights there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 05:41:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180992#M46100</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-04-16T05:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Making Program in Editor Read-Only</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180993#M46101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And make a backup in a non-shared location...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 14:10:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180993#M46101</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-04-16T14:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Making Program in Editor Read-Only</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180994#M46102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or use a version control system (SVN, GIT etc.), e.g. save the tool in your tools area, then version control external that code to your local project.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 15:03:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180994#M46102</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-04-16T15:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Making Program in Editor Read-Only</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180995#M46103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An other idea: put the part that may need editing into an include file, and have users make a local copy of that. The main program would then do a %inc '$HOME/something.sas'; and be saved without write access for the users. Have a provision for the log of every run to be saved permanently, so you can show it's the include that is causing the odd ERROR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 05:38:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180995#M46103</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2014-04-17T05:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Making Program in Editor Read-Only</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180996#M46104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I you are wanting to make a program read-only because you are doing release management ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is you are following the process of: Develop Test Accept Production DTAP than design the host control accordingly and do some management arround that. (ITIL) .&lt;/P&gt;&lt;P&gt;This is the higher level process to think about.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some technical approaches can help you to make thing easier around this. That are:&lt;/P&gt;&lt;P&gt;- reuse of accessable available components in the DTAP lifecycle. A filename approach (concat) with %inc is something.&amp;nbsp; &lt;/P&gt;&lt;P&gt;- The needed host access controls are commonly known and rather good to understand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some people have difficulties with the difference between horizontal and vertical.&lt;/P&gt;&lt;P&gt;- Let release-management by a vertical management eg DTAP approach &lt;/P&gt;&lt;P&gt;- Version-control has the goal on segerating the work of developers working in a project that is a horizontal approach.&lt;/P&gt;&lt;P&gt;vertical and horzizontal are two different directions.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 06:06:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Making-Program-in-Editor-Read-Only/m-p/180996#M46104</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-04-17T06:06:25Z</dc:date>
    </item>
  </channel>
</rss>

