BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Coa_sas
Calcite | Level 5

Hi all,

I am submitting the following code to Base SAS via MobaX on linux os.
%LET DATALOC = %str(sas_user/xxx/test_base);

OPTIONS MPRINT;

%MACRO IMPTFILE(DL,FN,DSNAME);

LIBNAME OUTPUT "&DL.";

FILENAME INF  "&FN.";

PROC CIMPORT LIBRARY = OUTPUT FILE = INF;
SELECT &DSNAME;
RUN;
%MEND;
RUN;


%IMPTFILE(&DATALOC.,&DATALOC./PERSON.XPT,PERSON);
RUN;

I am getting the following error, please help me
220  %IMPTFILE(&DATALOC.,&DATALOC./PERSON.XPT,PERSON);
MPRINT(IMPTFILE):   LIBNAME OUTPUT "sas_user/xxx/test_base";
NOTE: Library OUTPUT does not exist.
MPRINT(IMPTFILE):   FILENAME INF "sas_user/xxx/test_base/PERSON.XPT";

MPRINT(IMPTFILE):   PROC CIMPORT LIBRARY = OUTPUT FILE = INF;
MPRINT(IMPTFILE):   SELECT PERSON;
MPRINT(IMPTFILE):   RUN;

ERROR: Physical file does not exist, /sas_user/xxx/sas_user/xxx/test_base/PERSON.XPT.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE CIMPORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds

221  RUN;


1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

Your folder definition doesn't look right to me. I would expect it to begin with "/" like /sas_user/xxx/test_base. Check your folder path on Linux to ensure it is correct.

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

Your folder definition doesn't look right to me. I would expect it to begin with "/" like /sas_user/xxx/test_base. Check your folder path on Linux to ensure it is correct.

Coa_sas
Calcite | Level 5

Thanks Kiwi, Its worked..appriciate for your quick reply.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1497 views
  • 0 likes
  • 2 in conversation