<?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 in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/488776#M6074</link>
    <description>&lt;P&gt;I am getting the same message for this short script;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;Data Convert;&lt;BR /&gt;	infile "/Users/femioluwa@gmail.com/My Folder/My Snippets/femi/celsius.txt";&lt;BR /&gt;	input Temp_C;&lt;BR /&gt;	Temp_F = 1.8*Temp_C + 32;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I am working on a&amp;nbsp;&lt;SPAN class="il"&gt;SAS®&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Viya®&amp;nbsp;&amp;nbsp;SAS&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Visual Analytics environment&lt;/SPAN&gt;&amp;nbsp; application&lt;/P&gt;</description>
    <pubDate>Wed, 22 Aug 2018 06:10:09 GMT</pubDate>
    <dc:creator>femi28</dc:creator>
    <dc:date>2018-08-22T06:10:09Z</dc:date>
    <item>
      <title>ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/467557#M5639</link>
      <description>&lt;P&gt;Please see the code snippet below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;%let path=/folders/myfolders/ecprg293;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Data saleQ1;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;infile '&amp;amp;path/sales.dat';&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; *infile '/folders/myfolders/ecprg293/sales.dat';&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;input @1 SalesID $4.;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the error: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/&amp;amp;path/sales.dat. when using the infile statement that includes the &amp;amp;path macro reference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if I comment out that line, and use:&amp;nbsp;&lt;SPAN&gt;infile '/folders/myfolders/ecprg293/sales.dat'; Line,&amp;nbsp; it works fine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;using VirtualBox 5.2.8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 02:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/467557#M5639</guid>
      <dc:creator>danbowers</dc:creator>
      <dc:date>2018-06-05T02:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/467561#M5640</link>
      <description>&lt;P&gt;Use double quotes to resolve the macro variable, single quotes stop the resolution:&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;infile "&amp;amp;path/sales.dat";&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 02:52:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/467561#M5640</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-06-05T02:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/467783#M5653</link>
      <description>&lt;P&gt;Wow, I was pulling my hair out, didn't even realize I was using single quotes, Thank you!!!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jun 2018 17:58:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/467783#M5653</guid>
      <dc:creator>danbowers</dc:creator>
      <dc:date>2018-06-05T17:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/488776#M6074</link>
      <description>&lt;P&gt;I am getting the same message for this short script;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;Data Convert;&lt;BR /&gt;	infile "/Users/femioluwa@gmail.com/My Folder/My Snippets/femi/celsius.txt";&lt;BR /&gt;	input Temp_C;&lt;BR /&gt;	Temp_F = 1.8*Temp_C + 32;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I am working on a&amp;nbsp;&lt;SPAN class="il"&gt;SAS®&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Viya®&amp;nbsp;&amp;nbsp;SAS&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;Visual Analytics environment&lt;/SPAN&gt;&amp;nbsp; application&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 06:10:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/488776#M6074</guid>
      <dc:creator>femi28</dc:creator>
      <dc:date>2018-08-22T06:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/572651#M7737</link>
      <description>&lt;P&gt;try&lt;/P&gt;&lt;P&gt;infile '"path"' ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; single quote followed by double&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 10:31:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/572651#M7737</guid>
      <dc:creator>sachinsunny</dc:creator>
      <dc:date>2019-07-11T10:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/606876#M8372</link>
      <description>&lt;P&gt;"Hello Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am working on two Ports. &lt;STRONG&gt;Lev1 on Port:8561 with SAS Visual Analytics 7.1&lt;/STRONG&gt; and &lt;STRONG&gt;Lev2 on Port:8562 with SAS Visual Analytics 7.4&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;The entire process/project is working fine (importing raw files, data modelling and uploading data to LASR server). And now we want to migrate from SAS VA 7.1 to SAS VA 7.4 and hence we are now running the code on &lt;STRONG&gt;Lev2 Port:8562&lt;/STRONG&gt;. But the problem is the import/export code isn't working on Lev2.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;25 GOPTIONS ACCESSIBLE;&lt;BR /&gt;26 PROC IMPORT DATAFILE= "D:\VA_Data\RF productivity data\RF_SUBCATEGORY_TAT_DETAILS.xlsx"&lt;BR /&gt;27 OUT= expo_ccd.RF_SUBCATEGORY_TAT&lt;BR /&gt;28 DBMS=xlsx&lt;BR /&gt;29 REPLACE;&lt;BR /&gt;30 SHEET="Sheet1";&lt;BR /&gt;31 GETNAMES=YES;&lt;BR /&gt;32 RUN;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;ERROR: Physical file does not exist, D:\VA_Data\RF productivity data\RF_SUBCATEGORY_TAT_DETAILS.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;I tried switching ports and running same piece of code so its running properly on Lev1 and not working on Lev2.&amp;nbsp;&lt;BR /&gt;Where Lev1 &amp;amp; Lev2 are similar only difference is pointing to different versions of SAS VA.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Please help how do I resolve this."&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 05:14:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/ERROR-Physical-file-does-not-exist/m-p/606876#M8372</guid>
      <dc:creator>pareshrodrigues</dc:creator>
      <dc:date>2019-11-25T05:14:32Z</dc:date>
    </item>
  </channel>
</rss>

