I am using the SAS OnDemand for Academics. I am trying to open a sas.exe file to get the data. I tried this command:
data _null_;
infile '<myfile.exe> 2>&1' pipe;
input; * read from output;
putlog _infile_; * show it in the log;
run;
It gave me error:
Insufficient authorization to access PIPE
I searched the issue and I got this instruction: "to resolve the issue, you need to ask your SAS admin to click the check box "Allow XCMD" within SAS Management Console -> Server Manager -> SAS App - Workspace Server -> properties -> Options ->Advanced Options -> Launch Properties tab"
Seems like really complicated, can someone please help me to run this sas.exe file, thanks a lot!