Hello -- I've set up an autocall macro library on our SAS server (UNIX, SAS EG 4.3) by adding the following option to the config file: -SET SASAUTOS ("***macro path****") This works just as intended, all of the macros in the "macro path" folder are available to the session. However, I'm running into problems when running stored processes which reference those same shared macros. I know the sasutos option should be in the usermods file, but I've inserted the sasautos option in all of the following files but I've still had no luck. ./opt/biserver/Lev1/SASMeta/sasv9_usermods.cfg ./opt/biserver/Lev1/SASMeta/WorkspaceServer/sasv9_usermods.cfg ./opt/biserver/Lev1/SASMeta/MetadataServer/sasv9_usermods.cfg ./opt/biserver/Lev1/SASMeta/BatchServer/sasv9_usermods.cfg ./opt/biserver/Lev1/SASApp/sasv9_usermods.cfg ./opt/biserver/Lev1/SASApp/StoredProcessServer/sasv9_usermods.cfg ./opt/biserver/Lev1/SASApp/WorkspaceServer/sasv9_usermods.cfg ./opt/biserver/Lev1/SASApp/PooledWorkspaceServer/sasv9_usermods.cfg I was doing some reading and came across this note: http://support.sas.com/kb/32/231.html which references multiple config files being referenced by the stored process server: Store the .sas files for the user-created AUTOCALL macros in a directory other than the ones listed above, which must be concatenated into the SASAUTOS system option search path. The default SASAUTOS directory search path is determined when SAS initializes by reading the SAS configuration file(s) associated with the installation. Multiple SAS configuration files are read by default when a stored process is executed through a workspace server or stored process server. For example, in a Windows environment the SAS configuration files read by default will be similar to this: <BIConfigDir>\Lev1\SASMain\StoredProcessServer\sasv9_StorProcSrv.cfg <BIConfigDir>\Lev1\SASMain\sasv9.cfg !sasroot\sasv9.cfg !sasroot\nls\en\SASV9.CFG Any ideas on what config files on UNIX I need to modify to make my autocall library available to the stored process server?
... View more