<?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: Practice Quiz, Activity 6.01 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551152#M153113</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there is big chance you don't have write permission on a server to "&lt;SPAN&gt;/opt/sasinside/SASConfig/Lev1/SASApp" folder.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I may suggest, try to change path to the file you want to create to something like: "~/storm_final.csv" for the beginning,&amp;nbsp;to test if you can create it in your home directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The second thing is that since log says: "Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/&lt;STRONG&gt;&amp;amp;outpath&lt;/STRONG&gt;/storm_final.csv." it looks like macro variable&amp;nbsp;&amp;amp;outpath didn't resolve properly, try to check if following results with proper path:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put *&amp;amp;outpath*;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Let us know if it helped?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;all the best&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Bart&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Apr 2019 17:41:14 GMT</pubDate>
    <dc:creator>yabwon</dc:creator>
    <dc:date>2019-04-15T17:41:14Z</dc:date>
    <item>
      <title>Practice Quiz, Activity 6.01</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551087#M153084</link>
      <description>&lt;P&gt;Helo. I am having problems with this programme&lt;/P&gt;&lt;P&gt;proc export data=pg1.storm_final&lt;BR /&gt;outfile="&amp;amp;outpath/storm_final.csv"&lt;BR /&gt;dbms=csv replace;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;Says&lt;/P&gt;&lt;P&gt;ERROR: Export unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;How do I go about this?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:16:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551087#M153084</guid>
      <dc:creator>Adekemi</dc:creator>
      <dc:date>2019-04-15T15:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Practice Quiz, Activity 6.01</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551091#M153085</link>
      <description>&lt;P&gt;Did you look at the SAS Log as suggsted ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What does it say ?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 15:30:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551091#M153085</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2019-04-15T15:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Practice Quiz, Activity 6.01</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551107#M153091</link>
      <description>Yes. It reads&lt;BR /&gt;0 records created in &amp;amp;outpath/storm_final.csv from PG1.STORM_FINAL.&lt;BR /&gt;And also:&lt;BR /&gt;ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/&amp;amp;outpath/storm_final.csv.</description>
      <pubDate>Mon, 15 Apr 2019 15:50:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551107#M153091</guid>
      <dc:creator>Adekemi</dc:creator>
      <dc:date>2019-04-15T15:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Practice Quiz, Activity 6.01</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551120#M153101</link>
      <description>&lt;P&gt;Your macro variable &amp;amp;outpath isn't set up correctly. Ensure that the macro variable is created and points to the directory you want it to.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/265318"&gt;@Adekemi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes. It reads&lt;BR /&gt;0 records created in &amp;amp;outpath/storm_final.csv from PG1.STORM_FINAL.&lt;BR /&gt;And also:&lt;BR /&gt;ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/&amp;amp;outpath/storm_final.csv.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 16:17:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551120#M153101</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-15T16:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Practice Quiz, Activity 6.01</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551152#M153113</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there is big chance you don't have write permission on a server to "&lt;SPAN&gt;/opt/sasinside/SASConfig/Lev1/SASApp" folder.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I may suggest, try to change path to the file you want to create to something like: "~/storm_final.csv" for the beginning,&amp;nbsp;to test if you can create it in your home directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The second thing is that since log says: "Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/&lt;STRONG&gt;&amp;amp;outpath&lt;/STRONG&gt;/storm_final.csv." it looks like macro variable&amp;nbsp;&amp;amp;outpath didn't resolve properly, try to check if following results with proper path:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put *&amp;amp;outpath*;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Let us know if it helped?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;all the best&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Bart&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 17:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Practice-Quiz-Activity-6-01/m-p/551152#M153113</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2019-04-15T17:41:14Z</dc:date>
    </item>
  </channel>
</rss>

