I am getting an error exporting to csv from sas 9.4 using pc file server.
ERROR: Insufficient authorization to access /sas/lev1/config/Lev1/SASApp/
I know I have Insufficient authorization because I can export to the same location as an xlsx, both codes below.
I don't get how one code works and the other doesn't.
proc export data=work.flowresults
outfile="\\xxxxxxxxxxx_yyyyy.co.uk\xxxshare$\Service Delivery\test.csv"
dbms=csv replace ;
SERVER="aaa.zzz.corp";
SERVERUSER="xxx" ;
SERVERPASS="yyy";
run;
proc export data=work.flowresults
outfile="\\xxxxxxxxxxx_yyyyy.co.uk\xxxshare$\Service Delivery\test.xlsx"
dbms=excelcs replace ;
SERVER="aaa.zzz.corp";
SERVERUSER="xxx" ;
SERVERPASS="yyy";
run;