<?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: How to create an ods html output in SAS Studio? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668643#M23168</link>
    <description>Hi: You CANNOT use a Windows drive path with SAS University Edition in a Virtual Machine. SAS in a Virtual Machine is delivered as a Unix install. The ONLY location that SAS University Edition can write to is your shared folder location. You set up this shared folder location as the last step of installing SAS University Edition and importing it into the Virtual Machine hosting software.&lt;BR /&gt;  You can tell you are using SAS University Edition because the top folder is  called "My Folders".. however, the full path to this "My Folders"  location is&lt;BR /&gt;/folders/myfolders -- assuming you set up your shared folders correctly.&lt;BR /&gt;&lt;BR /&gt;So, if you have made a folder called all_output under this "My Folders" location then the path to all_output is NOT a Windows path, but would be /folders/myfolders/all_output.&lt;BR /&gt;&lt;BR /&gt;  Hope this explains why the E: drive reference will NEVER work with SAS University Edition.&lt;BR /&gt;Cynthia</description>
    <pubDate>Sun, 12 Jul 2020 15:07:18 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2020-07-12T15:07:18Z</dc:date>
    <item>
      <title>How to create an ods html output in SAS Studio?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668231#M23095</link>
      <description>&lt;P&gt;data sample;&lt;/P&gt;&lt;P&gt;input x y z;&lt;/P&gt;&lt;P&gt;datalines;&lt;/P&gt;&lt;P&gt;8.9 4.2 9.3&lt;/P&gt;&lt;P&gt;5.7 6.0 2.0&lt;/P&gt;&lt;P&gt;6.4 5.5 2.7&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods html body="e\&lt;FONT face="monospace" size="4"&gt;SASUniversityEdition\Myfolder\reg.htm”；&lt;/FONT&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: monospace; font-size: 110%; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.25em; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="monospace" size="4"&gt;proc reg data=sample;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="monospace" size="4"&gt;model y=x;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="monospace" size="4"&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="monospace" size="4"&gt;quit;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="monospace" size="4"&gt;After my running the above program, the logo shows error: insuffient authorization to access/opt/sasinside/sasconfig....&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="monospace" size="4"&gt;No body file; Html output will not be created.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="monospace" size="4"&gt;I don't know what is wrong with it? Can you help me? Thanks!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: monospace; font-size: 110%; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.25em; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But when running the above&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 00:53:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668231#M23095</guid>
      <dc:creator>Jfrank</dc:creator>
      <dc:date>2020-07-10T00:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an ods html output in SAS Studio?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668239#M23096</link>
      <description>&lt;P&gt;I think you need to be sure of what the folder path is as recognized by SAS University Edition. Right-click on "My Folders" under the Folder Shortcuts on the left-side menu and choose "Properties". This will give you the path under "Location".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This code works for me, outputting to /folders/myfolders/html. (I had to set the gpath as well.)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sample;
    input x y z;
datalines;
8.9 4.2 9.3
5.7 6.0 2.0
6.4 5.5 2.7
;
run;

options dlcreatedir;

libname htmlout '/folders/myfolders/html';
libname htmlout clear;

ods graphics / reset;
ods listing close;
ods html body="/folders/myfolders/html/reg.htm" gpath="/folders/myfolders/html";

proc reg data=sample;
    model y=x;
run;
quit;

ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 10 Jul 2020 02:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668239#M23096</guid>
      <dc:creator>ketpt42</dc:creator>
      <dc:date>2020-07-10T02:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an ods html output in SAS Studio?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668601#M23152</link>
      <description>&lt;P&gt;Still don't understand your answer fully. I have given the path "e:\SASUniversityEdition\Myfolder\reg.htm" in my program, but why the logo shows the error. I can run your program at my computer, and no error in the logo. However, I don't know where the reg.html is? I cannot find it in which driver and the folder.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2020 20:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668601#M23152</guid>
      <dc:creator>Jfrank</dc:creator>
      <dc:date>2020-07-11T20:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an ods html output in SAS Studio?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668603#M23153</link>
      <description>&lt;P&gt;If you're using SAS University Edition, it's unlikely that&amp;nbsp;&lt;SPAN&gt;e:\SASUniversityEdition\Myfolder is a valid path within the virtual machine. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Right-click on My Folders under "Server Files and Folders" and choose "Properties". You will see a path next to "Location:" in the pop-up window like ,my screenshot below. My guess is that it is going to say "/folders/Myfolder". You need to use that path to specify your output. It will be case-sensitive. Then, to look at your output files outside of the virtual machine, navigate to "e:\SASUniversityEdition\Myfolder."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Edit: Here's a video from SAS showing how to work with your folders inside and outside of the virtual machine:&amp;nbsp;&lt;A href="https://video.sas.com/detail/video/4005088074001/accessing-your-existing-data:-for-sas-university-edition" target="_blank" rel="noopener"&gt;Accessing Your Existing Data for SAS University Edition&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN&gt;. At the 1:30 mark, it shows how to get the path from "My Folders".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2020-07-11 164418.png" style="width: 309px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47069i7A6168B243FECD86/image-dimensions/309x186?v=v2" width="309" height="186" role="button" title="Annotation 2020-07-11 164418.png" alt="Annotation 2020-07-11 164418.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jul 2020 20:59:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668603#M23153</guid>
      <dc:creator>ketpt42</dc:creator>
      <dc:date>2020-07-11T20:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an ods html output in SAS Studio?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668643#M23168</link>
      <description>Hi: You CANNOT use a Windows drive path with SAS University Edition in a Virtual Machine. SAS in a Virtual Machine is delivered as a Unix install. The ONLY location that SAS University Edition can write to is your shared folder location. You set up this shared folder location as the last step of installing SAS University Edition and importing it into the Virtual Machine hosting software.&lt;BR /&gt;  You can tell you are using SAS University Edition because the top folder is  called "My Folders".. however, the full path to this "My Folders"  location is&lt;BR /&gt;/folders/myfolders -- assuming you set up your shared folders correctly.&lt;BR /&gt;&lt;BR /&gt;So, if you have made a folder called all_output under this "My Folders" location then the path to all_output is NOT a Windows path, but would be /folders/myfolders/all_output.&lt;BR /&gt;&lt;BR /&gt;  Hope this explains why the E: drive reference will NEVER work with SAS University Edition.&lt;BR /&gt;Cynthia</description>
      <pubDate>Sun, 12 Jul 2020 15:07:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-create-an-ods-html-output-in-SAS-Studio/m-p/668643#M23168</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-07-12T15:07:18Z</dc:date>
    </item>
  </channel>
</rss>

