Previous Page | Next Page

SAS System Options

APPEND= System Option



Appends a value to the existing value of the specified system option.
Valid in: OPTIONS statement, SAS System Options window
Category: Environment control: Files
PROC OPTIONS GROUP= ENVFILES
See: APPEND= System Option for the syntax to use and for additional supported options when you specify the APPEND= option when SAS starts: UNIX Windows z/OS

Syntax
Syntax Description
Details
Comparison
Examples
See Also

Syntax

APPEND=(system-option-1=argument-1 system-option-n=argument-n)


Syntax Description

system-option

can be CMPLIB, FMTSEARCH, MAPS, SASAUTOS, or SASSCRIPT.

argument

specifies a new value that you want to append to the current value of system-option.

argument can be any value that could be specified for system-option if system-option is set using the OPTIONS statement.


Details

If you specify a new value for the CMPLIB=, FMTSEARCH=, MAPS=, SASAUTOS=, or SASSCRIPT= system options, the new value replaces the value of the option. Instead of replacing the value, you can use the APPEND= system option to append a new value to the current value of the option.


Comparison

The APPEND= system option adds a new value to the end of the current value of the CMPLIB=, FMTSEARCH=, MAPS=, SASAUTOS=, or SASSCRIPT= system options. The INSERT= system option adds a new value as the first value of one of these system options.


Examples

The following table shows the results of adding a value to the end of the FMTSEARCH= option value:

Current FMTSEARCH= Value Value of APPEND= System Option New FMTSEARCH= Value
(WORK LIBRARY) (fmtsearch=(abc def)) (WORK LIBRARY ABC DEF)


See Also

System Option:

INSERT= System Option

Previous Page | Next Page | Top of Page