<?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: ERROR: Physical file does not exist, /folders/myfolders/ecprg193 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302167#M64057</link>
    <description>&lt;P&gt;In SAS UE, go to the Server Files and Folders Pane.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find the ECPRG folder, navigate to the file. Right click the file and select properties. You'll get the path to the file. Use that in your code.&lt;/P&gt;</description>
    <pubDate>Mon, 03 Oct 2016 20:13:45 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-10-03T20:13:45Z</dc:date>
    <item>
      <title>ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302099#M64014</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I downladed SAS university edition and I get this error while running the practice programs in Lesson 2: Working with SAS Programs. I defined the orion library by creating ecprg193 setup. But I still get this error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /folders/myfolders/ecprg193/country.dat.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.NEWCOUNTRY may be incomplete. When this step was stopped there were 0 observations and 2 variables.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.NEWCOUNTRY was not replaced because this step was stopped.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Please help!!&lt;/DIV&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:05:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302099#M64014</guid>
      <dc:creator>sriity_25</dc:creator>
      <dc:date>2016-10-03T17:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302101#M64015</link>
      <description>&lt;P&gt;Please show the entire code along with the error.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:09:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302101#M64015</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-10-03T17:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302105#M64019</link>
      <description>&lt;PRE&gt;data work.newcountry;
   length Country_Code $ 2 Country_Name $ 48;
   infile "&amp;amp;path/country.dat" dlm='!'; 
   input Country_Code $ Country_Name $;
run;

proc print data=work.newcountry;
run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error is as follows:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;55&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;56 data work.newcountry;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;57 length Country_Code $ 2 Country_Name $ 48;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 infile "&amp;amp;path/country.dat" dlm='!';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;59 input Country_Code $ Country_Name $;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;60 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Physical file does not exist, /folders/myfolders/ecprg193/country.dat.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The data set WORK.NEWCOUNTRY may be incomplete. When this step was stopped there were 0 observations and 2 variables.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: Data set WORK.NEWCOUNTRY was not replaced because this step was stopped.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.03 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;61&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 proc print data=work.newcountry;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;63 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: No observations in data set WORK.NEWCOUNTRY.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;64&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;65 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:14:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302105#M64019</guid>
      <dc:creator>sriity_25</dc:creator>
      <dc:date>2016-10-03T17:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302111#M64023</link>
      <description>&lt;P&gt;And the code assigning the PATH macro variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note the path is going to be case sensitive. So if you named the folder Ecprg193 then that does not match ecprg193.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:36:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302111#M64023</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-10-03T17:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302112#M64024</link>
      <description>&lt;P&gt;What is the code assigning the path?&lt;BR /&gt;This is the code I used for the setup&lt;BR /&gt;%let path=/folders/myfolders/ecprg193;&lt;BR /&gt;libname orion "&amp;amp;path";&lt;BR /&gt;And ecprg193 is in lowercase. I havent used Ecprg193 or anyother since I know it is case sensitive.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 17:44:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302112#M64024</guid>
      <dc:creator>sriity_25</dc:creator>
      <dc:date>2016-10-03T17:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302120#M64029</link>
      <description>&lt;P&gt;When you run your setup program, you should see the note in the log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: Libref ORION was successfully assigned&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Does this show up?&lt;/P&gt;&lt;P&gt;Are you sure you created the folder you are referencing in that location?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 18:08:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302120#M64029</guid>
      <dc:creator>JediApprentice</dc:creator>
      <dc:date>2016-10-03T18:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302125#M64032</link>
      <description>&lt;P&gt;Yes it does show up.&lt;BR /&gt;This is what I got in the log-&lt;BR /&gt;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;&amp;nbsp;55&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;56&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let path=/folders/myfolders/ecprg193;&lt;BR /&gt;&amp;nbsp;57&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; libname orion "&amp;amp;path";&lt;BR /&gt;&amp;nbsp;NOTE: Libref ORION was successfully assigned as follows:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Engine:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; V9&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Physical Name: /folders/myfolders/ecprg193&lt;BR /&gt;&amp;nbsp;58&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;59&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;&amp;nbsp;71&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did not find any error.&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 18:25:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302125#M64032</guid>
      <dc:creator>sriity_25</dc:creator>
      <dc:date>2016-10-03T18:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302127#M64034</link>
      <description>Yes I am sure. I created a folder "SASuniversityedition" in the desktop with a subfolder "my folders". Then linked it to the virtual box. Started SAS Studio and ran the ecprg193 as per the rules mentioned in the setup.</description>
      <pubDate>Mon, 03 Oct 2016 18:23:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302127#M64034</guid>
      <dc:creator>sriity_25</dc:creator>
      <dc:date>2016-10-03T18:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302166#M64056</link>
      <description>&lt;P&gt;Post a screenshot of that folder. Also, does the folder contain the file referenced?&lt;/P&gt;
&lt;P&gt;Can you open it as a text file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:12:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302166#M64056</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-03T20:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302167#M64057</link>
      <description>&lt;P&gt;In SAS UE, go to the Server Files and Folders Pane.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find the ECPRG folder, navigate to the file. Right click the file and select properties. You'll get the path to the file. Use that in your code.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 20:13:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302167#M64057</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-10-03T20:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist, /folders/myfolders/ecprg193</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302386#M64143</link>
      <description>Thank you Reeza, Ballardw and JediApprentice. I uninstalled it and installed it again. It is working now.&lt;BR /&gt;The path location was right. I dono exactly what went wrong. But itseems to be working now. Thank you for your replies. Sorry for the late reply.</description>
      <pubDate>Tue, 04 Oct 2016 16:13:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist-folders-myfolders-ecprg193/m-p/302386#M64143</guid>
      <dc:creator>sriity_25</dc:creator>
      <dc:date>2016-10-04T16:13:39Z</dc:date>
    </item>
  </channel>
</rss>

