<?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: How can I remove the modified template and go back to the default? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-remove-the-modified-template-and-go-back-to-the/m-p/225750#M53971</link>
    <description>&lt;P&gt;The screen shot&amp;nbsp;below is what I find on the template menu of SAS Results.&amp;nbsp;It looks like the customized&amp;nbsp;template is stored on Sasuser.Templat =&amp;gt; Base =&amp;gt; Freq =&amp;gt; CrossTabFreqs&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I guess I need to delete that customized template to go back to default template, is that correct? Will the deletion be the CrossTabFreqs only, or the whole&amp;nbsp;folders Base and/or Freq? I've come across warnings when manipulating on templates so just want to be sure. I think I will avoid&amp;nbsp;messing with this stuff for a while.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;UPDATE: I deleted &lt;SPAN&gt;CrossTabFreqs&lt;/SPAN&gt;&amp;nbsp;and things look&amp;nbsp;fine now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/138i8D5FA9C231DAE165/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Template.png" title="Template.png" /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Sep 2015 02:05:12 GMT</pubDate>
    <dc:creator>NonSleeper</dc:creator>
    <dc:date>2015-09-17T02:05:12Z</dc:date>
    <item>
      <title>How can I remove the modified template and go back to the default?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-remove-the-modified-template-and-go-back-to-the/m-p/225554#M53947</link>
      <description>&lt;P&gt;A few days ago I came across a program to modify the crosstabs template and tried it as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc template;&lt;BR /&gt; define crosstabs Base.Freq.CrossTabFreqs;&lt;BR /&gt; cellvalue frequency percent rowpercent colpercent;&lt;BR /&gt; define frequency;&lt;BR /&gt; format=8.;&lt;BR /&gt; header='Count';&lt;BR /&gt; end;&lt;BR /&gt; define percent;&lt;BR /&gt; format=pctfmt.;&lt;BR /&gt; header='Overall %';&lt;BR /&gt; end;&lt;BR /&gt; define rowpercent;&lt;BR /&gt; format=pctfmt.;&lt;BR /&gt; header='Row %';&lt;BR /&gt; end;&lt;BR /&gt;define colpercent;&lt;BR /&gt; format=pctfmt.;&lt;BR /&gt; header='Col %';&lt;BR /&gt; end;&lt;BR /&gt; end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It worked but as I wanted to go back, the source I read unfortunately didn't instruct clearly how to switch&amp;nbsp;to default template. Since then&amp;nbsp;I've been using&amp;nbsp;this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods path sashelp.tmplmst(read) sasuser.templat(update);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to go back to default template. If I don't run that ods, the modified template will show up.&lt;/P&gt;
&lt;P&gt;My question is: How can I remove the modified template permanently?&lt;/P&gt;
&lt;P&gt;I find a program on SAS User's Guide page to&amp;nbsp;delete the entire &lt;SPAN class="dataset"&gt;SASUSER.Templat&lt;/SPAN&gt; store of customized templates, not sure if it can solve my problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="pre"&gt;
&lt;PRE class="sascode"&gt;ods path sashelp.tmplmst(read);
proc datasets library=sasuser nolist;
   delete templat(memtype=itemstor);
run;
ods path sasuser.templat(update) sashelp.tmplmst(read);&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Sep 2015 12:34:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-remove-the-modified-template-and-go-back-to-the/m-p/225554#M53947</guid>
      <dc:creator>NonSleeper</dc:creator>
      <dc:date>2015-09-15T12:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: How can I remove the modified template and go back to the default?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-remove-the-modified-template-and-go-back-to-the/m-p/225558#M53948</link>
      <description>&lt;P&gt;If you goto Results &amp;nbsp;(in SAS that is), and right click on the word Results in the Results window, you will see a Templates option on the menu. &amp;nbsp;This will give you a tree view of the libraries and templates within them, you can add or remove from there. &amp;nbsp;I would caution you to be careful with thetemplates, I would always create a library for them separate to your code - principally as they may be used by more than one person which is one of the reasons for them. &amp;nbsp;Then put your templates in there and load them within your autoexec.sas. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2015 12:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-remove-the-modified-template-and-go-back-to-the/m-p/225558#M53948</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-09-15T12:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can I remove the modified template and go back to the default?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-can-I-remove-the-modified-template-and-go-back-to-the/m-p/225750#M53971</link>
      <description>&lt;P&gt;The screen shot&amp;nbsp;below is what I find on the template menu of SAS Results.&amp;nbsp;It looks like the customized&amp;nbsp;template is stored on Sasuser.Templat =&amp;gt; Base =&amp;gt; Freq =&amp;gt; CrossTabFreqs&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I guess I need to delete that customized template to go back to default template, is that correct? Will the deletion be the CrossTabFreqs only, or the whole&amp;nbsp;folders Base and/or Freq? I've come across warnings when manipulating on templates so just want to be sure. I think I will avoid&amp;nbsp;messing with this stuff for a while.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;UPDATE: I deleted &lt;SPAN&gt;CrossTabFreqs&lt;/SPAN&gt;&amp;nbsp;and things look&amp;nbsp;fine now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/138i8D5FA9C231DAE165/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Template.png" title="Template.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2015 02:05:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-can-I-remove-the-modified-template-and-go-back-to-the/m-p/225750#M53971</guid>
      <dc:creator>NonSleeper</dc:creator>
      <dc:date>2015-09-17T02:05:12Z</dc:date>
    </item>
  </channel>
</rss>

