Hi,
when I try to create a session in a SAS Stored Process with the code below:
data _null_;
file _webout;
if libref('SAVE') ne 0 then rc = stpsrv_session('create');
...
run;
upon execution through SAS Portal I get the following error messages:
ERROR: Stored Process Server environment not available
ERROR: Internal error detected in function STPSRV_SESSION. The DATA step is terminating during the EXECUTION phase.
Do I miss something in my code or this is a configuration issue and I should ask help for SAS Support ?
Thanks a lot.