<?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 HTML Panel generates HTML but output of the next reports get attached in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/HTML-Panel-generates-HTML-but-output-of-the-next-reports-get/m-p/53295#M1816</link>
    <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I'm using the HTML Panel to output graphs in a table. It works fine but when i run an other report that outputs graphs, they get all attached and i get an HTML file of 300MB. Any help?</description>
    <pubDate>Tue, 21 Dec 2010 11:23:31 GMT</pubDate>
    <dc:creator>Filipvdr</dc:creator>
    <dc:date>2010-12-21T11:23:31Z</dc:date>
    <item>
      <title>HTML Panel generates HTML but output of the next reports get attached</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/HTML-Panel-generates-HTML-but-output-of-the-next-reports-get/m-p/53295#M1816</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I'm using the HTML Panel to output graphs in a table. It works fine but when i run an other report that outputs graphs, they get all attached and i get an HTML file of 300MB. Any help?</description>
      <pubDate>Tue, 21 Dec 2010 11:23:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/HTML-Panel-generates-HTML-but-output-of-the-next-reports-get/m-p/53295#M1816</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2010-12-21T11:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: HTML Panel generates HTML but output of the next reports get attached</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/HTML-Panel-generates-HTML-but-output-of-the-next-reports-get/m-p/53296#M1817</link>
      <description>Hi:&lt;BR /&gt;
  Just a thought (without seeing your code)...are you sure you are CLOSING the HTMLPANEL destination??? However you open the destination, you MUST close it. So, for example if you have:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods tagsets.htmlpanel file=...;&lt;BR /&gt;
** then you MUST close the file (at the very end) with;&lt;BR /&gt;
     &lt;BR /&gt;
&lt;B&gt;ods tagsets.htmlpanel close;&lt;/B&gt;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                   &lt;BR /&gt;
OR, if you are using the ODS MARKUP method of invocation, you will need:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods markup tagset=htmlpanel file=...;&lt;BR /&gt;
*** more code;&lt;BR /&gt;
&lt;B&gt;ods markup close;&lt;/B&gt;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
Of course the statement&lt;BR /&gt;
[pre]&lt;BR /&gt;
&lt;B&gt;ods _all_ close;&lt;/B&gt;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                   &lt;BR /&gt;
will also close all of the open destinations in your program.&lt;BR /&gt;
                          &lt;BR /&gt;
Do note that the name of the destination is NOT two words: "HTML PANEL", so you are probably NOT invoking the destination as:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS HTML PANEL  (which would be wrong and should generate messages in the log) like this:&lt;BR /&gt;
                              &lt;BR /&gt;
1174  ods html panel file='c:\temp\somefile.html';&lt;BR /&gt;
               -----&lt;BR /&gt;
               22&lt;BR /&gt;
               202&lt;BR /&gt;
ERROR 22-322: Syntax error, expecting one of the following: ;, (, ANCHOR, ARCHIVE,&lt;BR /&gt;
              ATTRIBUTES, BASE, BODY, CHARSET, CLOSE, CODE, CONTENTS, CSS, CSSSTYLE,&lt;BR /&gt;
              ENCODING, EXCLUDE, FILE, FRAME, GFOOTNOTE, GPATH, GTITLE, HEADTEXT,&lt;BR /&gt;
              IMAGE_DPI, LAYOUT, METATEXT, NEWFILE, NOGFOOTNOTE, NOGTITLE, OPTIONS,&lt;BR /&gt;
              PACKAGE, PAGE, PARAMETERS, PATH, RECORD_SEPARATOR, RENDER, SELECT, SHOW,&lt;BR /&gt;
              STYLE, STYLESHEET, TEXT, TRANTAB.&lt;BR /&gt;
ERROR 202-322: The option or parameter is not recognized and will be ignored.&lt;BR /&gt;
[/pre]&lt;BR /&gt;
                                                                                                                                                &lt;BR /&gt;
Since the destination is NOT invoked with ODS HTML ... that means a simple &lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS HTML CLOSE;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 does&lt;B&gt;&lt;U&gt; NOT &lt;/U&gt;&lt;/B&gt;&lt;U&gt;&lt;/U&gt; close an open TAGSETS.HTMLPANEL output file.&lt;BR /&gt;
                            &lt;BR /&gt;
You might want to work with Tech Support on this question as they can look at all your code and see whether you are opening and closing the destination correctly. &lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 21 Dec 2010 16:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/HTML-Panel-generates-HTML-but-output-of-the-next-reports-get/m-p/53296#M1817</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-21T16:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: HTML Panel generates HTML but output of the next reports get attached</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/HTML-Panel-generates-HTML-but-output-of-the-next-reports-get/m-p/53297#M1818</link>
      <description>ods tagsets.htmlpanel close;&lt;BR /&gt;
&lt;BR /&gt;
thanks, this solves it i think!</description>
      <pubDate>Wed, 22 Dec 2010 07:11:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/HTML-Panel-generates-HTML-but-output-of-the-next-reports-get/m-p/53297#M1818</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2010-12-22T07:11:47Z</dc:date>
    </item>
  </channel>
</rss>

