Previous Page | Next Page

Functions and CALL Routines

SYSPARM Function



Returns the system parameter string.
Category: Special

Syntax
Details
Examples
See Also

Syntax

SYSPARM()


Details

If the SYSPARM function returns a value to a variable that has not yet been assigned a length, by default the variable is assigned a length of 200.

SYSPARM allows you to access a character string specified with the SYSPARM= system option at SAS invocation or in an OPTIONS statement.

Note:   If the SYSPARM= system option is not specified, the SYSPARM function returns a string with a length of zero.  [cautionend]


Examples

This example shows the SYSPARM= system option and the SYSPARM function.

options sysparm='yes';
data a;
   If sysparm()='yes' then
      do;
      ...SAS Statements...
      end;
run;


See Also

System option:

SYSPARM= System Option in SAS Macro Language: Reference

Previous Page | Next Page | Top of Page