Hello -- I'm looking for some advice on setting up an autocall library correctly. I've been going through my company's current setup and it seems to be a bit messy, and in fact some SAS autocall macros are currently not working (%CMPRES is one example). First, some specs: SAS 9.2 Enterprise Guide 4.3 UNIX Server Here is a highlight of the current configuration: opt/SAS/SASFoundation/9.2/nls/en/sasv9.cfg:
-insert sashelp !SASROOT/nls/en/sascfg
-insert helploc !SASROOT/X11/native_help
-SET SASAUTOS ("**unix/macro/path/location**")
opt/biserver/Lev1/SASApp/sasv9.cfg:
/* Set Options */
-metaautoresources "SASApp"
-insert sasautos "SASEnvironment/SASMacro"
-set APFMTLIB "SASEnvironment/SASFormats"
-insert fmtsearch APFMTLIB
-rsasuser
-emailsys SMTP
-emailhost mailrelay.XXX.com
-emailport 25
-metaserver "XXX"
-metaport 8561
-metarepository "Foundation"
-metaprotocol BRIDGE
-workperms 700
/* Include autoexec files */
-autoexec "/opt/biserver/Lev1/SASApp/appserver_autoexec.sas"
opt/biserver/Lev1/SASApp/sasv9_usermods.cfg: (not sure why there is not a space between these two paths, seems incorrect)
-APPLETLOC "http://XXX.com:8080/sasweb/graph"
-SET SASAUTOS ("**unix/macro/path/location**""SASEnvironment/SASMacro")
opt/biserver/Lev1/SASApp/StoredProcessServer/sasv9_usermods.cfg:
-APPLETLOC "http://XXX.com:8080/sasweb/graph"
-SET SASAUTOS ("**unix/macro/path/location**")
Kind of messy unfortunately. Any suggestions as to how to get on solid ground?
... View more