Hello everyone. I am trying to call a .sas program in SAS Viya from a location on the server. I have used the filesrvc command but it doesn't work. These are the sentences: filename myfldr filesrvc folderPath = '/Users/Edachiardi/CodigosSAS /';
data _null_;
infile myfldr ('infile_put.sas');
run This is the log: NOTE: The infile library MYFLDR is:
Directory = / Users / Edachiardi / CodigosSAS /,
Folder Identifier = af055b98-acdc-44f8-a874-da6bdd394aa4,
Last Modified = November 10, 2019 17H46
NOTE: The infile MYFLDR ('infile_put.sas') is:
Filename = infile_put.sas,
URI path = / files / files / 12f21451-b610-4fb7-b1ed-cbc76791a98b,
File Identifier = 12f21451-b610-4fb7-b1ed-cbc76791a98b,
Content Type = application / octet-stream,
Parent URI = / folders / folders / af055b98-acdc-44f8-a874-da6bdd394aa4,
RECFM = V, LRECL = 32767, File Size (bytes) = 135,
Last Modified = November 10, 2019 18H02,
Create Time = November 10, 2019 4:45 PM
NOTE: A total of 0 records were read from the infile library MYFLDR.
NOTE: 0 records were read from the infile MYFLDR ('infile_put.sas').
NOTE: DATA statement has used (Total process time):
real time 0.52 seconds
cpu time 0.17 seconds Any ideas for correct invocation. Thanks.
... View more