|
SAS/IntrNet 8.2: Application Dispatcher |
|
Returns the numeric value of a PROC APPSRV parameter setting
Syntax
Arguments
Details
Examples
RC = APPSRVSET( valuecode, newvalue )
The APPSRVSET function takes one character string parameter and one numeric string parameter and returns a numeric string result.
| SAS Statements |
|---|
rc=appsrvset('request timeout',300);
|
rc=appsrvset('session timeout',900);
|
rc=appsrvset('program error',256);
|
/* disable generation of MIME headers */
rc=appsrvset('automatic headers',0);
|
|
SAS/IntrNet 8.2: Application Dispatcher |
|