<?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 SAS 9.2 and CONTENTS pane size not easily changed with PROC TEMPLATE in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23763#M665</link>
    <description>SAS technical support has revealed that SAS v9.2 PROC TEMPLATE cannot be used to re-size the CONTENTS pane/window using STYLE= override.  Supposedly it is fixed in the next release -- not yet determined when available.  A somewhat convoluted circumvention was provided and it was supposed to be posted as a defect with a TECHNOTE for individuals to reference, though I have been unable to locate said tech reference.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
    <pubDate>Tue, 01 Dec 2009 15:48:00 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2009-12-01T15:48:00Z</dc:date>
    <item>
      <title>SAS 9.2 and CONTENTS pane size not easily changed with PROC TEMPLATE</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23763#M665</link>
      <description>SAS technical support has revealed that SAS v9.2 PROC TEMPLATE cannot be used to re-size the CONTENTS pane/window using STYLE= override.  Supposedly it is fixed in the next release -- not yet determined when available.  A somewhat convoluted circumvention was provided and it was supposed to be posted as a defect with a TECHNOTE for individuals to reference, though I have been unable to locate said tech reference.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 01 Dec 2009 15:48:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23763#M665</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-12-01T15:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.2 and CONTENTS pane size not easily changed with PROC TEMPLATE</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23764#M666</link>
      <description>And for those who are impacted by this DEFECT, consider contacting SAS support to let them know the importance, suggesting that a HOTFIX is in order for ENTERPRISE-level production web-content reporting, what is dependent on SAS ODS.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 01 Dec 2009 18:03:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23764#M666</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-12-01T18:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.2 and CONTENTS pane size not easily changed with PROC TEMPLATE</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23765#M667</link>
      <description>Hi:&lt;BR /&gt;
  I did not find a Tech Support note yet, but if you just heard back from Tech Support, it does take some time for new notes to go through their "process".&lt;BR /&gt;
 &lt;BR /&gt;
  In the meantime, I figure Tech Support told you that your template change will work with ODS HTML3 (which generates W3C HTML 3.2 compliant HTML tags) as opposed to regular ODS HTML (which generates W3C HTML 4.0 compliant HTML tags). So until the Tech Support note comes out, I thought I would post this workaround. It's a revision to the template code in this note:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/23/435.html" target="_blank"&gt;http://support.sas.com/kb/23/435.html&lt;/A&gt;&lt;BR /&gt;
using both ODS HTML3 and ODS HTML to show how the HTML 3.2 output uses the contentsize attribute and how the HTML 4.0 output does not. I believe the reason that the older ODS HTML3 works and the newer ODS HTML does not is that the older ODS HTML3 destination did things slightly differently than the newer ODS HTML destination.&lt;BR /&gt;
          &lt;BR /&gt;
 There was also a previous forum posting on this topic:&lt;BR /&gt;
 &lt;A href="http://support.sas.com/forums/thread.jspa?threadID=7301" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?threadID=7301&lt;/A&gt; (but no workaround). I believe another approach would be to change the tagset template for ODS HTML -- but I find the ODS HTML3 method easier for my students to understand. &lt;BR /&gt;
 &lt;BR /&gt;
If you need to generate an in-line style section, you can always modify your ODS HTML3 invocation to use the STYLESHEET option:&lt;BR /&gt;
[pre]&lt;BR /&gt;
   ods html3 path='c:\temp' (url=none)&lt;BR /&gt;
             file='ts3sbod.html'&lt;BR /&gt;
             contents='ts3stoc.html'&lt;BR /&gt;
             frame='ts3sfrm.html' style=styles.test &lt;BR /&gt;
             stylesheet;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                               &lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods path work.testtemp(update)&lt;BR /&gt;
         sasuser.templat(update)&lt;BR /&gt;
         sashelp.tmplmst(read);&lt;BR /&gt;
                                             &lt;BR /&gt;
proc template;&lt;BR /&gt;
     define style styles.test;&lt;BR /&gt;
     parent=styles.default;&lt;BR /&gt;
       style Frame from Document /&lt;BR /&gt;
             contentposition = L&lt;BR /&gt;
             bodyscrollbar = auto&lt;BR /&gt;
             bodysize = *&lt;BR /&gt;
             contentscrollbar = auto&lt;BR /&gt;
             contentsize = 50%&lt;BR /&gt;
             framespacing = 1&lt;BR /&gt;
             frameborderwidth = 4&lt;BR /&gt;
             frameborder = on;&lt;BR /&gt;
     end;&lt;BR /&gt;
run;&lt;BR /&gt;
                                     &lt;BR /&gt;
** ODS HTML will NOT use CONTENTSIZE attribute;&lt;BR /&gt;
ods html  path='c:\temp'(url=none)&lt;BR /&gt;
          file='ts4bod.html'&lt;BR /&gt;
          contents='ts4toc.html'&lt;BR /&gt;
          frame='ts4frm.html' style=styles.test;&lt;BR /&gt;
            &lt;BR /&gt;
** ODS HTML3 WILL use the CONTENTSIZE attribute;&lt;BR /&gt;
ods html3 path='c:\temp' (url=none)&lt;BR /&gt;
          file='ts3bod.html'&lt;BR /&gt;
          contents='ts3toc.html'&lt;BR /&gt;
          frame='ts3frm.html' style=styles.test;&lt;BR /&gt;
                   &lt;BR /&gt;
  proc print data=sashelp.shoes(obs=2);&lt;BR /&gt;
  run;&lt;BR /&gt;
                   &lt;BR /&gt;
  proc print data=sashelp.class(obs=3);&lt;BR /&gt;
  run;&lt;BR /&gt;
              &lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Tue, 01 Dec 2009 19:14:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23765#M667</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-12-01T19:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.2 and CONTENTS pane size not easily changed with PROC TEMPLATE</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23766#M668</link>
      <description>Glad you mentioned ODS HTML3 - that was not conveyed as an option by the support individual - we will explore it as a more palatable choice.  It's been only 10 days or so, since the defect was identified by support, so we'll wait a week longer and then will follow-up.&lt;BR /&gt;
&lt;BR /&gt;
Cynthia, you're extensive and valued input is most appreciated.  Way over the top!  Thank you.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 01 Dec 2009 19:35:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-2-and-CONTENTS-pane-size-not-easily-changed-with-PROC/m-p/23766#M668</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-12-01T19:35:29Z</dc:date>
    </item>
  </channel>
</rss>

