<?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: ods html frame blank in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-frame-blank/m-p/572565#M22969</link>
    <description>&lt;P&gt;Hi: I would also recommend using (URL=NONE) after the PATH= option -- if you do this, then you don't need ANY of the other URL= options.&lt;BR /&gt;&lt;BR /&gt;Also, you really should NOT have both BODY= and FILE=. with 2 of them, BODY.HTML will NOT be created, but Analyses.HTML will be created.&lt;BR /&gt;&lt;BR /&gt;NEWFILE=NONE is the default. It's not hurting here, but you don't need it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I mimic your code, then the frame appears empty because the links inside the FRAME file are bad:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bad_frame.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30928iACAE2B48EFE26F6B/image-size/large?v=v2&amp;amp;px=999" role="button" title="bad_frame.png" alt="bad_frame.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;When you mail the 3 files (BODY or FILE, FRAME and CONTENTS), nobody will be able to open them using the FRAME file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do this, on the other hand,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="good_code.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30929i56979030B5C24F7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="good_code.png" alt="good_code.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that I took out the extra FILE= option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then file files are created and the src=attribute shows the impact of URL=NONE:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="good_frame_src.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30930i5B2CB33EB5370A8F/image-size/large?v=v2&amp;amp;px=999" role="button" title="good_frame_src.png" alt="good_frame_src.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the output displays correctly when FRAME2.HTML is opened:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="good_frame.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30931i17CDD1098042390A/image-size/large?v=v2&amp;amp;px=999" role="button" title="good_frame.png" alt="good_frame.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also assumes that all 3 output HTML files are sent together and stored in the same folder, not different folders.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jul 2019 00:05:26 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2019-07-11T00:05:26Z</dc:date>
    <item>
      <title>ods html frame blank</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-frame-blank/m-p/572557#M22968</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've run a whole set of analyses and output using ODS HTML to create a body, contents, and frame .html files. All of these properly display on my machine. However, when I send these three files over email, my recipients open up a blank frame.html and functioning body.html and contents.html file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code I used to generate these three files:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ODS listing close;
ODS HTML 	path = "&amp;amp;outdir"
			body = 'body.html' (url='body.html')
			contents = 'contents.html' (url='contents.html')
			frame = 'frame.html' (url='frame.html')
			file = 'Analyses.html'
			newFile = NONE;

%include "&amp;amp;inpath\07-09-2019 Data Creation File.sas";
%include "&amp;amp;inpath\07-09-2019 Descriptive Tables.sas";
%include "&amp;amp;inpath\07-08-2019 Models.sas";
%include "&amp;amp;inpath\07-09-2019 Time Trends1.sas";
%include "&amp;amp;inpath\07-09-2019 Time Trends2.sas";

ods html close;&lt;/PRE&gt;
&lt;P&gt;Is my error leading to the blank frame.html file in the code or am I just attaching too few files in my emails?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for help.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2019 22:40:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-frame-blank/m-p/572557#M22968</guid>
      <dc:creator>antonsvart</dc:creator>
      <dc:date>2019-07-10T22:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: ods html frame blank</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-frame-blank/m-p/572565#M22969</link>
      <description>&lt;P&gt;Hi: I would also recommend using (URL=NONE) after the PATH= option -- if you do this, then you don't need ANY of the other URL= options.&lt;BR /&gt;&lt;BR /&gt;Also, you really should NOT have both BODY= and FILE=. with 2 of them, BODY.HTML will NOT be created, but Analyses.HTML will be created.&lt;BR /&gt;&lt;BR /&gt;NEWFILE=NONE is the default. It's not hurting here, but you don't need it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I mimic your code, then the frame appears empty because the links inside the FRAME file are bad:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bad_frame.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30928iACAE2B48EFE26F6B/image-size/large?v=v2&amp;amp;px=999" role="button" title="bad_frame.png" alt="bad_frame.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;When you mail the 3 files (BODY or FILE, FRAME and CONTENTS), nobody will be able to open them using the FRAME file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do this, on the other hand,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="good_code.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30929i56979030B5C24F7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="good_code.png" alt="good_code.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that I took out the extra FILE= option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then file files are created and the src=attribute shows the impact of URL=NONE:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="good_frame_src.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30930i5B2CB33EB5370A8F/image-size/large?v=v2&amp;amp;px=999" role="button" title="good_frame_src.png" alt="good_frame_src.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the output displays correctly when FRAME2.HTML is opened:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="good_frame.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30931i17CDD1098042390A/image-size/large?v=v2&amp;amp;px=999" role="button" title="good_frame.png" alt="good_frame.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also assumes that all 3 output HTML files are sent together and stored in the same folder, not different folders.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 00:05:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-frame-blank/m-p/572565#M22969</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-07-11T00:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: ods html frame blank</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-frame-blank/m-p/572848#M22975</link>
      <description>&lt;P&gt;Thank you for your help and taking the time to make these screenies!! Your solution worked and I learned precisely why and how the error happened.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 17:03:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-frame-blank/m-p/572848#M22975</guid>
      <dc:creator>antonsvart</dc:creator>
      <dc:date>2019-07-11T17:03:48Z</dc:date>
    </item>
  </channel>
</rss>

