<?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 Error Creating ODS HTML Output in SAS Studio in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829590#M604</link>
    <description>&lt;DIV class=""&gt;Hi Group, I've recently started getting the following error when outputting to HTML.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: Insufficient authorization to access /pbr/biconfig/940/Lev1/SASApp/ttest.htm.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: No body file. HTML output will not be created.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Here's the SAS code:&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt;title 'Comparing Group Means';&lt;BR /&gt;&lt;BR /&gt;data Scores;&lt;BR /&gt;   input Gender $ Score @@;&lt;BR /&gt;   datalines;&lt;BR /&gt;f 75  f 76  f 80  f 77  f 80  f 77  f 73&lt;BR /&gt;m 82  m 80  m 85  m 85  m 78  m 87  m 82&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;ods html body='ttest.htm' style=HTMLBlue;&lt;BR /&gt;&lt;BR /&gt;proc ttest;&lt;BR /&gt;   class Gender;&lt;BR /&gt;   var Score;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods html close;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;taken from:&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/statcdc/14.2/statug/statug_ods_examples01.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/statcdc/14.2/statug/statug_ods_examples01.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;K&lt;/P&gt;</description>
    <pubDate>Mon, 22 Aug 2022 00:20:35 GMT</pubDate>
    <dc:creator>ksingh67</dc:creator>
    <dc:date>2022-08-22T00:20:35Z</dc:date>
    <item>
      <title>Error Creating ODS HTML Output in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829590#M604</link>
      <description>&lt;DIV class=""&gt;Hi Group, I've recently started getting the following error when outputting to HTML.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: Insufficient authorization to access /pbr/biconfig/940/Lev1/SASApp/ttest.htm.&lt;/DIV&gt;&lt;DIV class=""&gt;ERROR: No body file. HTML output will not be created.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Here's the SAS code:&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt;title 'Comparing Group Means';&lt;BR /&gt;&lt;BR /&gt;data Scores;&lt;BR /&gt;   input Gender $ Score @@;&lt;BR /&gt;   datalines;&lt;BR /&gt;f 75  f 76  f 80  f 77  f 80  f 77  f 73&lt;BR /&gt;m 82  m 80  m 85  m 85  m 78  m 87  m 82&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;ods html body='ttest.htm' style=HTMLBlue;&lt;BR /&gt;&lt;BR /&gt;proc ttest;&lt;BR /&gt;   class Gender;&lt;BR /&gt;   var Score;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods html close;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;taken from:&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/statcdc/14.2/statug/statug_ods_examples01.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/statcdc/14.2/statug/statug_ods_examples01.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;K&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 00:20:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829590#M604</guid>
      <dc:creator>ksingh67</dc:creator>
      <dc:date>2022-08-22T00:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error Creating ODS HTML Output in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829591#M605</link>
      <description>&lt;P&gt;Try this to see if it will redirect the file to your own home directory:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title 'Comparing Group Means';

data Scores;
   input Gender $ Score @@;
   datalines;
f 75  f 76  f 80  f 77  f 80  f 77  f 73
m 82  m 80  m 85  m 85  m 78  m 87  m 82
;

ods html body='~/ttest.htm' style=HTMLBlue;

proc ttest;
   class Gender;
   var Score;
run;

ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2022 01:19:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829591#M605</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2022-08-22T01:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error Creating ODS HTML Output in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829693#M607</link>
      <description>&lt;P&gt;You need to specify a full path, the default path for the file isn't writeable.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Including a full path in the body portion gets around this.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 16:26:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829693#M607</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-08-22T16:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error Creating ODS HTML Output in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829783#M608</link>
      <description>&lt;P&gt;*Try this code;&lt;/P&gt;
&lt;P&gt;title 'Comparing Group Means';&lt;/P&gt;
&lt;P&gt;data Scores;&lt;BR /&gt;input Gender $ Score @@;&lt;BR /&gt;datalines;&lt;BR /&gt;f 75 f 76 f 80 f 77 f 80 f 77 f 73&lt;BR /&gt;m 82 m 80 m 85 m 85 m 78 m 87 m 82&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;ods html path="~/" file="ttest.htm" style=HTMLBlue;&lt;/P&gt;
&lt;P&gt;proc ttest;&lt;BR /&gt;class Gender;&lt;BR /&gt;var Score;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods html close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 01:40:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/829783#M608</guid>
      <dc:creator>tom_grant</dc:creator>
      <dc:date>2022-08-23T01:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error Creating ODS HTML Output in SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/830007#M609</link>
      <description>More info on SAS Studio ODS:&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/n1kyru0ayzlghln17pepfrlwspqi.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/n1kyru0ayzlghln17pepfrlwspqi.htm&lt;/A&gt;</description>
      <pubDate>Tue, 23 Aug 2022 21:48:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Error-Creating-ODS-HTML-Output-in-SAS-Studio/m-p/830007#M609</guid>
      <dc:creator>tom_grant</dc:creator>
      <dc:date>2022-08-23T21:48:23Z</dc:date>
    </item>
  </channel>
</rss>

