<?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: Missing style template upon fresh intsall in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715932#M221177</link>
    <description>&lt;P&gt;I found the solution: more than one instance of SAS open:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/techsup/notes/v8/4/739.html" target="_blank"&gt;http://support.sas.com/techsup/notes/v8/4/739.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Feb 2021 01:58:25 GMT</pubDate>
    <dc:creator>texasmfp</dc:creator>
    <dc:date>2021-02-02T01:58:25Z</dc:date>
    <item>
      <title>Missing style template upon fresh intsall</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715923#M221172</link>
      <description>&lt;P&gt;I did a fresh install and, apparently I had created a custom style (which I called SASMONOSPACE) that got wiped out.&amp;nbsp; It is possible that there is a backup of my files that might contain this custom style.&amp;nbsp; Where would custom templates be stored on my hard drive?&amp;nbsp; Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 00:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715923#M221172</guid>
      <dc:creator>texasmfp</dc:creator>
      <dc:date>2021-02-02T00:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Missing style template upon fresh intsall</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715927#M221175</link>
      <description>&lt;P&gt;This is one of those "it depends" answers.&lt;/P&gt;
&lt;P&gt;If you had the style template saved in a permanent library and then added that library to the path then the template should still be in the library and just need to be added to the path.&lt;/P&gt;
&lt;P&gt;However if you wrote the template direct to the template store then it was likely completely overwritten by the install.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You did save the code that created the template didn't you? Hopefully you can find that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tedious option is restore from a system backup the appropriate folders to somewhere other than the existing template catalog, assign a library and use Proc Template to go fishing for template with the name you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 01:05:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715927#M221175</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-02-02T01:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Missing style template upon fresh intsall</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715928#M221176</link>
      <description>&lt;P&gt;Thanks, I did find the code, but I ran it and the log says it cannot write to the template store:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;9767   DM 'CLEAR LOG; CLEAR OUTPUT';
9768   options ExtendObsCounter=no;
9769
9770   PROC TEMPLATE;
9771   define style Styles.SASMonospace;
9772      parent = styles.printer;
9773      class fonts /
9774         'docFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9775         'headingFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9776         'headingEmphasisFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9777         'FixedFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9778         'FixedHeadingFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9779         'FixedStrongFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9780         'FixedEmphasisFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9781         'EmphasisFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9782         'StrongFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9783         'TitleFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9784         'TitleFont2' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt)
9785         'BatchFixedFont' = ("&amp;lt;SAS monospace&amp;gt;, Roman, SAS monospace",8pt);
9786
9787   /*class header/
9788   backgroundcolor=white
9789   color=Blue;
9790   */
9791   style systemtitle /
9792   backgroundcolor=white
9793   fontfamily='SAS Monospace'
9794   fontstyle=Roman
9795   fontsize=8.5pt
9796   color=bLUE;
9797
9798   style systemfooter /
9799   backgroundcolor=white
9800   fontfamily='SAS Monospace'
9801   fontstyle=Roman
9802   fontsize=7.5pt
9803   color=bLUE;
9804
9805   style PageNo /
9806   backgroundcolor=white
9807   fontfamily='SAS Monospace'
9808   fontstyle=Roman
9809   fontsize=7.5pt
9810   color=bLUE;
9811
9812   style BODYdate /
9813   backgroundcolor=white
9814   fontfamily='SAS Monospace'
9815   fontstyle=Roman
9816   fontsize=7.5pt
9817   color=lightRED;
9818
9819   class table /
9820         frame = void
9821         rules = groups
9822         backgroundcolor = white
9823         borderspacing = 0pt
9824         cellpadding = 2pt;
9825      style allrulestable from table /
9826         frame = void
9827         rules = all;
9828   end;
ERROR: Template 'Styles.SASMonospace' was unable to write to template store!
9829   run;
NOTE: PROCEDURE TEMPLATE used (Total process time):
      real time           0.03 seconds
      cpu time            0.04 seconds

WARNING: Errors were produced.
NOTE: The SAS System stopped processing this step because of errors.

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 01:16:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715928#M221176</guid>
      <dc:creator>texasmfp</dc:creator>
      <dc:date>2021-02-02T01:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Missing style template upon fresh intsall</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715932#M221177</link>
      <description>&lt;P&gt;I found the solution: more than one instance of SAS open:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/techsup/notes/v8/4/739.html" target="_blank"&gt;http://support.sas.com/techsup/notes/v8/4/739.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 01:58:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-style-template-upon-fresh-intsall/m-p/715932#M221177</guid>
      <dc:creator>texasmfp</dc:creator>
      <dc:date>2021-02-02T01:58:25Z</dc:date>
    </item>
  </channel>
</rss>

