I submitted a SAS program as given in a practice .
i have already defined the Orion Library before writing this code. . And when i clicked on Run i got the following error message in log-
Errors, Warnings, Notes
Errors (1)
Warnings (4)
Notes (4)
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
42 ;
43 data work.country;
44 length Country_Code $2 Country_Name $48;
45 infile "&path/country.dat" dlm='!';
WARNING: Apparent symbolic reference PATH not resolved.
WARNING: Apparent symbolic reference PATH not resolved.
46 input country_code $ country_Name $;
47 run;
ERROR: Physical file does not exist, /opt/sasinside/SASConfig/Lev1/SASApp/&path/country.dat.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.COUNTRY may be incomplete. When this step was stopped there were 0 observations and 2 variables.
WARNING: Data set WORK.COUNTRY was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.02 seconds
48
49 proc print data=work.country;
50 run;
Please help me out
Thanks,
Deepa.