<?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 Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526084#M143189</link>
    <description>This is what I get when I try that: WARNING: Apparent symbolic reference UNIX_PATH not resolved.</description>
    <pubDate>Thu, 10 Jan 2019 16:09:05 GMT</pubDate>
    <dc:creator>astha8882000</dc:creator>
    <dc:date>2019-01-10T16:09:05Z</dc:date>
    <item>
      <title>ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525952#M143134</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The aim of this code is just to get create a log file in the unix location but I've been getting this error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are the steps I've taken so far:&lt;/P&gt;&lt;P&gt;1. I checked the &lt;SPAN&gt;shared unix&amp;nbsp;&lt;/SPAN&gt;path to make sure I have access&lt;/P&gt;&lt;P&gt;2. Made sure the unix path is written correctly&lt;/P&gt;&lt;P&gt;3. made sure the folders were created and had read write rights.&lt;/P&gt;&lt;P&gt;4. I even created a dummy document but nothing seems to get rid of this error and the log displays nothing useful, just the below statements all over again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the posts in this forum regarding this error were mainly due to its usage in infile statement, so I couldn't find anything similar.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Would appreciate some help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename pswrdfile "some password file location" ;
data _null_ ;
           infile pswrdfile truncover;
           input line :$50.;
           call symputx('dtbspswrd',line);
     run ;
 

      %put &amp;amp; dtbspswrd ;

%let unix_path = some unix path location;
proc printto log = "&amp;amp;unix_path./log/prjname_log.txt"; 
run;


options nocenter source2 mlogic symbolgen nomprint;

Proc SQL;
CONNECT TO teradata (user="%sysget(USER)" password="&amp;amp; dtbspswrd." tdpid=aprtera mode=teradata); 
CREATE TABLE def as
Select * From connection to teradata
(SELECT top 10 * FROM some_table);
DISCONNECT FROM TERADATA;
QUIT;

proc contents data= def;
run;

proc printto; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adding log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;GOPTIONS ACCESSIBLE;&lt;BR /&gt;filename pswrdfile "some password file location" ;
data _null_ ;
           infile pswrdfile truncover;
           input line :$50.;
           call symputx('dtbspswrd',line);
     run ;
 
NOTE: The infile PSWRDFILE is:&lt;BR /&gt;Filename = some password file location,&lt;BR /&gt;Owner Name = [my user id], Group Name = sasuser2,&lt;BR /&gt;Last Modified = 06Dec2018;11:36:54,&lt;BR /&gt;File Size (bytes) = 40&lt;BR /&gt;&lt;BR /&gt;NOTE: 1 record was read from the infile PSWRDFILE.&lt;BR /&gt;The minimum record length was 40.&lt;BR /&gt;The maximum record length was 40.&lt;BR /&gt;NOTE: DATA statement used (Total process time): &lt;BR /&gt;real time  0.01 seconds&lt;BR /&gt;cpu time   0.01 seconds&lt;BR /&gt;
      %put &amp;amp; dtbspswrd ;
SYMBOLGEN: Macro variable DTBSPSWRD resolves to {Encrypted password}&lt;BR /&gt;
%let unix_path = some unix path location;
&lt;BR /&gt;proc printto log = "&amp;amp;unix_path./log/prjname_log.txt"; 
SYMBOLGEN: Macro variable UNIX_PATH resolves to 'some unix path location'&lt;BR /&gt;&lt;BR /&gt;run;

ERROR: Physical file does not exist, some unix path location/log/prjname_log.txt&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.
options nocenter source2 mlogic symbolgen nomprint;

Proc SQL;
CONNECT TO teradata (user="%sysget(USER)" password="&amp;amp; dtbspswrd." tdpid=aprtera mode=teradata); 
CREATE TABLE def as
Select * From connection to teradata
(SELECT top 10 * FROM some_table);&lt;BR /&gt;&lt;BR /&gt;NOTE: Table WORK.DEF created, with 13 rows and 700 columns&lt;BR /&gt;
DISCONNECT FROM TERADATA;
QUIT;
&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time  15.30 seconds&lt;BR /&gt;cpu time   0.04 seconds&lt;BR /&gt;&lt;BR /&gt;proc contents data= def;
run;

proc printto; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Jan 2019 02:22:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525952#M143134</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T02:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525955#M143136</link>
      <description>&lt;P&gt;Did you post your log with the errors?&lt;/P&gt;
&lt;P&gt;you have a space after your ampersand&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My first sujestion would be to change this:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;password&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"&amp;amp; dtbspswrd."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token string"&gt;to this:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token string"&gt;&lt;SPAN&gt;password&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;"&amp;amp;dtbspswrd."&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 01:42:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525955#M143136</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-01-10T01:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525963#M143143</link>
      <description>&lt;P&gt;Space was a typo, I removed it, thanks. That didn't help with the error sadly. Also updated the logs. Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 02:23:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525963#M143143</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T02:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525967#M143147</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/122200"&gt;@astha8882000&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Make sure that the path....&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;some unix path location&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;log&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;....exists and is accessible out of the server context where your program executes from.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 03:40:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525967#M143147</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-01-10T03:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525968#M143148</link>
      <description>Yes, this path exists and I can access it through winscp. Is there a way to check if or not I can access it through my code?</description>
      <pubDate>Thu, 10 Jan 2019 03:48:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525968#M143148</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T03:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525969#M143149</link>
      <description>&lt;P&gt;Try&amp;nbsp;&amp;nbsp;inserting the "/" to before the macro variable , in case it does not resolve it along with&amp;nbsp; "&amp;amp;unix_path"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log = "/&amp;amp;unix_path./log/prjname_log.txt"; 
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 03:49:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525969#M143149</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2019-01-10T03:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525970#M143150</link>
      <description>&lt;P&gt;Where is your SAS program running? On the same server as the Unix file paths or some other computer?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 03:53:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525970#M143150</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-01-10T03:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525984#M143157</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/122200"&gt;@astha8882000&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;If you execute the following code..&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;EM&gt;%put &amp;amp;unix_path./log;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;...and then copy/paste the resolved path from the log 1:1 into WinSCP: Does this work?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is the user you use with WinSCP the same than the one under which the SAS program executes?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 06:53:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/525984#M143157</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-01-10T06:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526080#M143185</link>
      <description>It's running on the same server. All the other codes run the same way too so I feel okay about that part.</description>
      <pubDate>Thu, 10 Jan 2019 15:59:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526080#M143185</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T15:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526083#M143188</link>
      <description>that didn't work either. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;</description>
      <pubDate>Thu, 10 Jan 2019 16:04:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526083#M143188</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T16:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526084#M143189</link>
      <description>This is what I get when I try that: WARNING: Apparent symbolic reference UNIX_PATH not resolved.</description>
      <pubDate>Thu, 10 Jan 2019 16:09:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526084#M143189</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T16:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526092#M143194</link>
      <description>&lt;P&gt;A couple of things to double check.&lt;/P&gt;
&lt;P&gt;1) That you have specified the path exactly right.&amp;nbsp; Unix paths are case sensitive.&amp;nbsp; If you do not start the path with / then it will be relative to the current working directory for your SAS process.&lt;/P&gt;
&lt;P&gt;2) That the path exists on the machine where SAS is running.&amp;nbsp; The machine that SAS runs on might not be the machine that you connect to with your FTP tool to look at the files.&lt;/P&gt;
&lt;P&gt;3) That you have permission to read (or write if needed) to the file.&amp;nbsp; The userid that is used to run the SAS code might not be the same as the userid you used in your FTP tool to look at the files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your SAS session allows you to execute shell commands then you can do some of the testing yourself.&amp;nbsp; For example this little data step will run an ls and pwd command and dump the output to SAS log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let unix_path = some unix path location;
data _null_;
  infile 
"ls -ld &amp;amp;unix_path 
; /bin/pwd
" pipe ;
  input;
  put _infile_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 16:31:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526092#M143194</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-01-10T16:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526094#M143195</link>
      <description>&lt;P&gt;Are you running the code from SAS EG ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are running from SAS EG there is an option of selecting a Server : SASAPP from a list. Make sure the SASAPP associated to the target server is selected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sasapp.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26176i15343E2B3B558323/image-size/large?v=v2&amp;amp;px=999" role="button" title="sasapp.jpg" alt="sasapp.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 16:30:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526094#M143195</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2019-01-10T16:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526113#M143209</link>
      <description>Took care of that, thank you.</description>
      <pubDate>Thu, 10 Jan 2019 17:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526113#M143209</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T17:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526114#M143210</link>
      <description>What can I do to sort out this warning?</description>
      <pubDate>Thu, 10 Jan 2019 17:02:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526114#M143210</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T17:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526117#M143213</link>
      <description>&lt;P&gt;Great. If it resolves the issue select the correct response and close the thread.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 17:04:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526117#M143213</guid>
      <dc:creator>r_behata</dc:creator>
      <dc:date>2019-01-10T17:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526180#M143250</link>
      <description>Ok so this warning is sorted. But the issue is still there &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;</description>
      <pubDate>Thu, 10 Jan 2019 19:57:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526180#M143250</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-10T19:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526244#M143282</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/122200"&gt;@astha8882000&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Ok so this warning is sorted. But the issue is still there &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;So have you tried:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;...and then copy/paste the resolved path from the log 1:1 into WinSCP: Does this work?&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 00:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526244#M143282</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-01-11T00:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526245#M143283</link>
      <description>yes, I did the copy paste and it's accessible that way.&lt;BR /&gt;&lt;BR /&gt;I tried another method, creating the log file on a temporary sasmart location and then do a x "cp command. The log file did get created but it's not copying over to the unix_path location.</description>
      <pubDate>Fri, 11 Jan 2019 00:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526245#M143283</guid>
      <dc:creator>astha8882000</dc:creator>
      <dc:date>2019-01-11T00:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Physical file does not exist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526247#M143285</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/122200"&gt;@astha8882000&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Read through what&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;wrote. He's covering pretty much the possible root causes of why that's not working for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For testing: Instead of redirecting the log why don't you just first try with a simple filename statement writing "something" to the desired location. If that works then redirecting the log to such a location should work as well.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 00:45:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-Physical-file-does-not-exist/m-p/526247#M143285</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-01-11T00:45:41Z</dc:date>
    </item>
  </channel>
</rss>

