It looks like your configuration is not correct.
This:
ERROR: Library SASHELP does not exist.
means that the library points a path that does not exist.
Run:
%put %sysfunc(pathname(SASHELP));
to see the paths used.
But if the configuration is wrong, you'll likely encounter many other issues.
You must look at the root cause.
... View more