<?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: PROC REPORT on mainfrale z/OS: V9 versus V8 in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-REPORT-on-mainfrale-z-OS-V9-versus-V8/m-p/37458#M5296</link>
    <description>Hi:&lt;BR /&gt;
  Several things happened between Version 8 and Version 9 of SAS that had an impact on ODS. The biggest change that affected ODS HTML was this:&lt;BR /&gt;
&lt;BR /&gt;
V8: Version of ODS HTML created HTML 3.2 tags, where style information was embedded inside the HTML code (such as with &amp;lt;FONT&amp;gt; tags and STYLE attributes).&lt;BR /&gt;
&lt;BR /&gt;
V9: Version of ODS HTML created HTML 4.0 tags, where style information is contained in an inline &amp;lt;STYLE&amp;gt; section.&lt;BR /&gt;
&lt;BR /&gt;
On reason you could be observing the behavior that you describe is :&lt;BR /&gt;
1) your viewer does not "like" HTML 4 tags (this behavior is most noticeable when you open your HTML file with Excel)&lt;BR /&gt;
2) your browser or viewer does not "like" the inline &amp;lt;STYLE&amp;gt; section&lt;BR /&gt;
&lt;BR /&gt;
If you want to run a quick test, change one job from ODS HTML to ODS HTML3 -- this will guarantee that the HTML tags created are the same as those created in V8. Other alternatives are:&lt;BR /&gt;
1) use ODS HTML3&lt;BR /&gt;
2) use ODS MSOFFICE2K (Microsoft came up with their own "flavor" of HTML instead of HTML 4 -- for Microsoft Office -- starting in Office 2000. If you want to create this flavor of HTML, use the MS specific HTML-based destination)&lt;BR /&gt;
3) use ODS TAGSETS.EXCELXP -- if you want to create Spreadsheet Markup Language XML files specifically for Excel.&lt;BR /&gt;
&lt;BR /&gt;
Between V8 and V9, there were some style template changes, as well&lt;BR /&gt;
[pre]&lt;BR /&gt;
  v8 old        v9 new&lt;BR /&gt;
style name    style name&lt;BR /&gt;
-----------   -----------&lt;BR /&gt;
statistical     harvest&lt;BR /&gt;
analysis        ocean&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
In V9, there is still a style called STATISTICAL and a style called ANALYSIS, but their colors are different from their V8 versions. If you want the old color schemes, use the new style names shown above. &lt;BR /&gt;
&lt;BR /&gt;
Without knowing what procedure contains your STYLE={background=bisque} override, it is hard to guess why you might not be seeing the results you expect. If the problem does not turn out to be ODS HTML versus ODS HTML3 -- then you might want to open a track with Tech Support so you could show them all your code and they could test the code on a mainframe system.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
    <pubDate>Fri, 18 Jun 2010 13:52:22 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2010-06-18T13:52:22Z</dc:date>
    <item>
      <title>PROC REPORT on mainfrale z/OS: V9 versus V8</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-REPORT-on-mainfrale-z-OS-V9-versus-V8/m-p/37457#M5295</link>
      <description>dear readers,&lt;BR /&gt;
i have a PROC REPORT on z/OS mainframe with style= elements.&lt;BR /&gt;
Now we are mirgrated to 9.2 and my layout differs for 50% !!!&lt;BR /&gt;
&lt;BR /&gt;
What has changed V8 versus V9 ??&lt;BR /&gt;
i.e.  STYLE={BACKGROUND=BISQUE does not work anymore??&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Herman</description>
      <pubDate>Fri, 18 Jun 2010 13:00:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-REPORT-on-mainfrale-z-OS-V9-versus-V8/m-p/37457#M5295</guid>
      <dc:creator>Jaheuk</dc:creator>
      <dc:date>2010-06-18T13:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: PROC REPORT on mainfrale z/OS: V9 versus V8</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-REPORT-on-mainfrale-z-OS-V9-versus-V8/m-p/37458#M5296</link>
      <description>Hi:&lt;BR /&gt;
  Several things happened between Version 8 and Version 9 of SAS that had an impact on ODS. The biggest change that affected ODS HTML was this:&lt;BR /&gt;
&lt;BR /&gt;
V8: Version of ODS HTML created HTML 3.2 tags, where style information was embedded inside the HTML code (such as with &amp;lt;FONT&amp;gt; tags and STYLE attributes).&lt;BR /&gt;
&lt;BR /&gt;
V9: Version of ODS HTML created HTML 4.0 tags, where style information is contained in an inline &amp;lt;STYLE&amp;gt; section.&lt;BR /&gt;
&lt;BR /&gt;
On reason you could be observing the behavior that you describe is :&lt;BR /&gt;
1) your viewer does not "like" HTML 4 tags (this behavior is most noticeable when you open your HTML file with Excel)&lt;BR /&gt;
2) your browser or viewer does not "like" the inline &amp;lt;STYLE&amp;gt; section&lt;BR /&gt;
&lt;BR /&gt;
If you want to run a quick test, change one job from ODS HTML to ODS HTML3 -- this will guarantee that the HTML tags created are the same as those created in V8. Other alternatives are:&lt;BR /&gt;
1) use ODS HTML3&lt;BR /&gt;
2) use ODS MSOFFICE2K (Microsoft came up with their own "flavor" of HTML instead of HTML 4 -- for Microsoft Office -- starting in Office 2000. If you want to create this flavor of HTML, use the MS specific HTML-based destination)&lt;BR /&gt;
3) use ODS TAGSETS.EXCELXP -- if you want to create Spreadsheet Markup Language XML files specifically for Excel.&lt;BR /&gt;
&lt;BR /&gt;
Between V8 and V9, there were some style template changes, as well&lt;BR /&gt;
[pre]&lt;BR /&gt;
  v8 old        v9 new&lt;BR /&gt;
style name    style name&lt;BR /&gt;
-----------   -----------&lt;BR /&gt;
statistical     harvest&lt;BR /&gt;
analysis        ocean&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
In V9, there is still a style called STATISTICAL and a style called ANALYSIS, but their colors are different from their V8 versions. If you want the old color schemes, use the new style names shown above. &lt;BR /&gt;
&lt;BR /&gt;
Without knowing what procedure contains your STYLE={background=bisque} override, it is hard to guess why you might not be seeing the results you expect. If the problem does not turn out to be ODS HTML versus ODS HTML3 -- then you might want to open a track with Tech Support so you could show them all your code and they could test the code on a mainframe system.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 18 Jun 2010 13:52:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-REPORT-on-mainfrale-z-OS-V9-versus-V8/m-p/37458#M5296</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-06-18T13:52:22Z</dc:date>
    </item>
  </channel>
</rss>

