proc import datafile='X:\Files\Users\XXXX\SAS\Sample.txt'
out=Inputs
dbms=dlm
replace;
delimiter='09'x;
run;
proc print data=Work.Inputs;
run;
%sysfunc(pathname(work))\Inputs.txt %sysfunc(fexist(pathname(work)))\Output.txt); I tried to take data from a tab delimited text file. trying to read/ create input and output txt file in work folder.This is where I get the error. The output data returns the input from the above code, but gives this error for output ERROR: Physical file does not exist, F:\SASWORK\_TD25664_VIRTAPP-PVSC49_\Prc2\Output.txt.
... View more