<?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: Hi, I really need some help with my ods html file code, please help! in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866255#M26233</link>
    <description>&lt;P&gt;You need to tell us about the type of SAS session you are using. Are you connecting to a remote SAS server or SAS OnDemand for example? If so the SAS session is quite likely running on a server that doesn't have a C drive. Also you can't reference the C drive on your own computer from a remote SAS server normally.&lt;/P&gt;</description>
    <pubDate>Sat, 25 Mar 2023 02:13:23 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2023-03-25T02:13:23Z</dc:date>
    <item>
      <title>ods html file error</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866242#M26232</link>
      <description>&lt;P&gt;I'm trying to use ods graphics, but every time I try to specify the html file, it gives the same error. I've looked at a few sas help pages but nothing comes up.&lt;/P&gt;
&lt;P&gt;ods _ALL_ close;&lt;/P&gt;
&lt;P&gt;ods html file="c:\temp\MyHTMLfile.htm"; (Note: even with .html it gives the error term.&lt;/P&gt;
&lt;P&gt;ERROR: Physical file does not exist, c:\temp\MyHTMLfile.htm.&lt;/P&gt;
&lt;P&gt;ERROR: No body file. HTML output will not be created.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 11:28:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866242#M26232</guid>
      <dc:creator>bryn41</dc:creator>
      <dc:date>2023-03-27T11:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I really need some help with my ods html file code, please help!</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866255#M26233</link>
      <description>&lt;P&gt;You need to tell us about the type of SAS session you are using. Are you connecting to a remote SAS server or SAS OnDemand for example? If so the SAS session is quite likely running on a server that doesn't have a C drive. Also you can't reference the C drive on your own computer from a remote SAS server normally.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Mar 2023 02:13:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866255#M26233</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-03-25T02:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I really need some help with my ods html file code, please help!</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866283#M26234</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html path="c:\temp\" body="MyHTMLfile.htm"; 
proc print data=sashelp.class ;
run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 25 Mar 2023 10:30:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866283#M26234</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-03-25T10:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I really need some help with my ods html file code, please help!</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866320#M26235</link>
      <description>&lt;P&gt;Because your SAS session likely executes on a SAS server you need to provide a path that's accessible by the SAS server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With below code the .htm file will get written to the SAS WORK location.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html
  path="%sysfunc(pathname(work))" 
  body="MyHTMLfile.htm"
  ; 
proc print data=sashelp.class ;
run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If using SAS EG you will see below in your result window. The path to WORK will give you a clear indication where your SAS actually executes.&amp;nbsp;&lt;BR /&gt;I've used a local SAS installation under Windows so I've got a Windows path.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1679795392697.png" style="width: 551px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/82038i5B3AC4D4B0806DF2/image-dimensions/551x127?v=v2" width="551" height="127" role="button" title="Patrick_0-1679795392697.png" alt="Patrick_0-1679795392697.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Mar 2023 01:53:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-html-file-error/m-p/866320#M26235</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2023-03-26T01:53:20Z</dc:date>
    </item>
  </channel>
</rss>

