HI ALL, we have SAS EBI system 9.4 on Unix servers. User having client applications having EG 6.1 on window 7. Issue 1: User A, having PC SAS and have create sas code, data sets and placed source files in shared drive. User B, wants to create library for User A windows path to use sas code, data sets and source file, which is not working(User A and B are in same group, but User B EG not PC SAS). Issue 2: User X trying to read data(.csv) fill from windows machine, its giveing error (attached) How to fix and enable users to create library for their windows path? Error: Libname bc ‘C:\xxxxx\data’; ERROR: Physical file does not exist, /opt/sas/Config/Lev1/SASApp/J:\User\ Provid07132015.csv. NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.TEST1 may be incomplete. When this step was stopped there were 0 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.10 seconds cpu time 0.02 seconds 65 66 data file1; 67 set test1; 68 pbase1_3= ' '; 69 pbase5_8= ' '; 70 pid1_4 = ' '; 71 pid5_7 = ' '; 72 provkey = ' '; 73 pbase1_3 = substr(provbase,1,3); 74 pbase5_8 =substr(provbase,5,4); 75 pid1_4 =substr(provid,1,4); 76 pid5_7 =substr(provid,5,3); 77 provkey =pbase5_8||provtype||pid1_4||pbase1_3||pid5_7; 78 fname = scan(contname,1,''); 79 lname =scan(contname,2); 80 81 82 if email = ' ' then delete; 83 *if contname = ' ' then delete; 84 *drop contname; 85 86 87 run; NOTE: There were 0 observations read from the data set WORK.TEST1. NOTE: The data set WORK.FILE1 has 0 observations and 18 variables. NOTE: DATA statement used (Total process time): real time 0.08 seconds cpu time 0.02 seconds 88 proc sort data = file1; by provkey; 89 run; NOTE: Input data set is empty. NOTE: The data set WORK.FILE1 has 0 observations and 18 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.42 seconds cpu time 0.00 seconds 3 The SAS System 10:47 Wednesday, July 15, 2015 90 proc print data = file1(obs=10); 91 title "ARC Provider file with provider key"; 92 run; NOTE: No observations in data set WORK.FILE1. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 93 94 data bc.provider_file_&date.; 95 set file1; 96 by provkey; 97 *if provtype ='45'; 98 run; ERROR: Library BC does not exist. NOTE: The SAS System stopped processing this step because of errors. NOTE: There were 0 observations read from the data set WORK.FILE1. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds Thanks, Ram
... View more