I have not used this but have some suggestions.
This documentation states that you should not specify the SSLCALISTLOC option:
CAUTION Do not change the SSLCALISTLOC= system option. Starting SAS 9.4M3, the SSLCALISTLOC= system option should not be overridden or changed unless directed by technical support or PSD.
https://go.documentation.sas.com/?docsetId=secref&docsetTarget=p0pul4j64w0mg0n1h1k6z8zhfvaf.htm&docsetVersion=9.4
The LIBNAME statement is in error because the FRED enviroment variable is not defined, causing the path specified to be invalid. You might be able to specify any valid path in the LIBNAME statement.
For example, in SAS University Edition I have a mapped folder My Folders > Data referring to the /folders/myfolders/Data location (view the properties of the folder to see the location). This LIBNAME statement should work if you specify the correct location for the PATH variable and your API key:
options validvarname=any;
%let PATH=/folders/myfolders/Data;
libname fred sasefred "&PATH"
OUTXML=exportgs
XMLMAP="&PATH/exportgs.map"
APIKEY='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
IDLIST='bopxgsa';
After you get the LIBNAME statement working, then try submitting the DATA step code to read the data:
data work.export_gsa;
set fred.exportgs ;
run;
Vince DelGobbo
SAS R&D
... View more