Used when SAS starts, appends the specified value at the end of the specified system option.
Valid in: | configuration file, SAS invocation, OPTIONS statement, System Options window |
PROC OPTIONS GROUP= | ENVFILES |
Default: | none |
Windows specifics: | SAS invocation syntax |
can be AUTOEXEC, CMPLIB, FMTSEARCH, HELPLOC, MAPS, MSG, SAMPLOC, SASAUTOS, SASHELP, SASSCRIPT, or SET.
specifies a new pathname or an environment setting that you want to append to the current value of system-option. The following example shows that a library is being appended to the FMTSEARCH option:
-set APFMTLIB “SASEnvironment/SASFormats” -append fmtsearch APFMTLIB
c:\app2\help
,
and the output of PROC OPTIONS shows only C:\app2\help
: sas -helploc “c:\app1\help” -helploc “c:\app2\help”
sas -helploc “c:\app1\help” -append helploc “c:\app2\help”
(“c:\app1\help” “c:\app2\help”)