BookmarkSubscribeRSS Feed
raghubachu123
Calcite | Level 5

Hi SAS Community,

 

I am having trouble viewing the available data( I can see the SAS datasets but not the excel spreadsheets) once I write a libname to the shared drive. It works when I write a libname to my personal documents folder though. We have SAS running on windows 2012 r2 server. Can you please help me on this? Any suggestions would be much appreciated.

 

Raghu.

3 REPLIES 3
tanya_henderson
Obsidian | Level 7

Check your path names.  I had a similar issue recently and, depending on how the report is run, the output is placed in different locations. 

 

This was my solution: 


%if &sysuserid = sasrpt %then %do;

PROC IMPORT out=health
FILE= "/home/sasrpt/output/prod/filename.csv"
DBMS=csv REPLACE;
guessingrows=3000;
RUN;
%end;

%else %if &sysuserid = study%then %do;
PROC IMPORT out=health
FILE= "/home/study/study/filename.csv"
DBMS=csv REPLACE;
guessingrows=3000;
RUN;

raghubachu123
Calcite | Level 5

Thanks Tanya for the response. I will follow it and let you know.

tanya_henderson
Obsidian | Level 7

This solution was successful but I had to program for three different possibilities because of our environments and how the report was run. 

 

Thank you for the guidance. 

 

SAS Innovate 2025: Register Today!

 

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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
  • 3 replies
  • 1018 views
  • 0 likes
  • 2 in conversation