Hi, I've got a user who has created a project which starts with an Import of data. This has all worked fine until he got a colleague to run the same Project and gets the following error.
ERROR: Physical file does not exist, /usr/local/sas/***/Lev1/SASNew/TRUNCOVER.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.CRA_CLM may be incomplete.
This is the portion of the code I think it is refering to
OPTIONS DATESTYLE=DMY;
DATA WORK.CRA_CLM;
/* Enterprise Guide creates this temporary asterisk delimited text file from the original data source */
INFILE
TRUNCOVER
DSD
%IF &IsMVS=FALSE %THEN %DO;
LRECL=32767
%END;
The project is saved on a server which each user has to log on to.
Any idea's why this is happening.
Cheers
Ted