<?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 ODS TAGSETS.MVSHTML in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41984#M5687</link>
    <description>Hi, &lt;BR /&gt;
&lt;BR /&gt;
I am trying to migrate my applications from SAS8 to SAS9.1. For this, I replaced the ODS HTML in SAS 8 with ODS TAGSETS.MVSHTML in SAS9. &lt;BR /&gt;
&lt;BR /&gt;
The SAS 8 code will generate 100 separate HTML reports while the SAS 9 is generating only 1 HTML report with the contents of the 100 reports get apended one below the other. I want separate HTML reports to be created in SAS 9 too.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone suggest me where i am missing out, also wat changes i need to do in SAS 9 in order to get the desired output.&lt;BR /&gt;
&lt;BR /&gt;
Thanks in Advance!&lt;BR /&gt;
Meena</description>
    <pubDate>Wed, 27 Aug 2008 09:44:21 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-08-27T09:44:21Z</dc:date>
    <item>
      <title>ODS TAGSETS.MVSHTML</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41984#M5687</link>
      <description>Hi, &lt;BR /&gt;
&lt;BR /&gt;
I am trying to migrate my applications from SAS8 to SAS9.1. For this, I replaced the ODS HTML in SAS 8 with ODS TAGSETS.MVSHTML in SAS9. &lt;BR /&gt;
&lt;BR /&gt;
The SAS 8 code will generate 100 separate HTML reports while the SAS 9 is generating only 1 HTML report with the contents of the 100 reports get apended one below the other. I want separate HTML reports to be created in SAS 9 too.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone suggest me where i am missing out, also wat changes i need to do in SAS 9 in order to get the desired output.&lt;BR /&gt;
&lt;BR /&gt;
Thanks in Advance!&lt;BR /&gt;
Meena</description>
      <pubDate>Wed, 27 Aug 2008 09:44:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41984#M5687</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-08-27T09:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: ODS TAGSETS.MVSHTML</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41985#M5688</link>
      <description>Do consider sharing your code - at least the ODS and "HTML report" generation portion.  As a consideration, review your use of NEWFILE= parameter with your ODS statement.&lt;BR /&gt;
&lt;BR /&gt;
By the way, the following Google advanced search against the SAS.COM domain/site, generated some interesting hits:&lt;BR /&gt;
&lt;BR /&gt;
ods html separate files mvshtml site:sas.com&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 27 Aug 2008 12:22:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41985#M5688</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2008-08-27T12:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODS TAGSETS.MVSHTML</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41986#M5689</link>
      <description>Hi:&lt;BR /&gt;
  One note about moving from SAS 8 to SAS 9 and ODS -- by default SAS 8 created HTML 3.2 compliant tags when you used ODS HTML; SAS 9 creates HTML 4.0 compliant tags when you use ODS HTML. However, ODS TAGSETS.MVSHTML creates HTML 3.2 compliant tags.&lt;BR /&gt;
&lt;BR /&gt;
  And, according to the log note when you run the tagset:&lt;BR /&gt;
[pre]&lt;BR /&gt;
NOTE: Writing TAGSETS.MVSHTML Body file: somefile.html&lt;BR /&gt;
This tagset is create proper MVS pdse urls with ods. Use it like this:  &lt;BR /&gt;
ODS tagsets.mvshtml path="acct.PDSE.HTML" &lt;BR /&gt;
      gpath="acct.PDSE.GIF" frame="FILEF"&lt;BR /&gt;
     body="FILEB" &lt;BR /&gt;
     contents="FILEC" base="http://your.server/MVSDS/" RS=None;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 27 Aug 2008 15:11:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41986#M5689</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-08-27T15:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS TAGSETS.MVSHTML</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41987#M5690</link>
      <description>Thanks Sbb and Cynthia ...&lt;BR /&gt;
&lt;BR /&gt;
I really felt useful...&lt;BR /&gt;
&lt;BR /&gt;
Here is the HTML code that i use in my SAS 9:&lt;BR /&gt;
&lt;BR /&gt;
ODS TAGSETS.MVSHTML BODY="&amp;amp;RPT.B" (URL="&amp;amp;RPT.B.HTM") STYLE=DEFAULTLOGO &lt;BR /&gt;
         CONTENTS="&amp;amp;RPT.C" (URL="&amp;amp;RPT.C.HTM") STYLE=STYLES.TEST        &lt;BR /&gt;
         FRAME="&amp;amp;RPT.F" (title='SAMPLE Reporting')     &lt;BR /&gt;
         PATH="SAMPLET.HTML" (URL=NONE)              &lt;BR /&gt;
         TRANTAB=ASCII                                                 &lt;BR /&gt;
         NEWFILE=PAGE                                                  &lt;BR /&gt;
         NOGTITLE                                                      &lt;BR /&gt;
         STYLESHEET="SAMPLE.WEBSTYLE.LEE" (url='lee2.css')       &lt;BR /&gt;
         ;      &lt;BR /&gt;
&lt;BR /&gt;
Following is the log note:&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Writing TAGSETS.MVSHTML Stylesheet file: SAMPLE.WEBSTYLE.LEE&lt;BR /&gt;
NOTE: Writing TAGSETS.MVSHTML Body file: RPTB                          &lt;BR /&gt;
NOTE: Writing TAGSETS.MVSHTML Contents file: RPTC                      &lt;BR /&gt;
NOTE: Writing TAGSETS.MVSHTML Frame file: RPTF                         &lt;BR /&gt;
This tagset is create proper MVS pdse urls with ods. Use it like this: ODS tagsets.mvshtml path="acct.PDSE.HTML" gpath="acct.PDSE.GIF" frame="FILEF" body="FILEB" contents="FILEC" base="http://your.server/MVSDS/" RS=None;   &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Could you please let me know where i should do the change:&lt;BR /&gt;
&lt;BR /&gt;
Many Thanks,&lt;BR /&gt;
&lt;BR /&gt;
Meena</description>
      <pubDate>Fri, 29 Aug 2008 05:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41987#M5690</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-08-29T05:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: ODS TAGSETS.MVSHTML</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41988#M5691</link>
      <description>Hi, Meena:&lt;BR /&gt;
  If you are saying that syntax which used to work in SAS8 (with NEWFILE=PAGE) does not produce the same results in SAS9 -- then that is an issue for Tech Support.&lt;BR /&gt;
&lt;BR /&gt;
  As you can see from the sample syntax in the LOG note, the PDSE multi-level name goes in PATH= or GPATH= option and the single level member names go in BODY=, FRAME= and CONTENTS= options.&lt;BR /&gt;
&lt;BR /&gt;
  Depending, on what &amp;amp;RPT will resolve to, it looks to me as though you are trying to create a series of sequential files?? At any rate, this is really a question for Tech Support, as they have access to a mainframe computer for testing and verifying syntax.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 29 Aug 2008 14:31:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-TAGSETS-MVSHTML/m-p/41988#M5691</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-08-29T14:31:08Z</dc:date>
    </item>
  </channel>
</rss>

