Contents SAS/IntrNet 8.2: Application Dispatcher Previous Next

APPSRVSET


Returns the numeric value of a PROC APPSRV parameter setting

Syntax
Arguments
Details
Examples


Syntax

RC = APPSRVSET( valuecode, newvalue )


Arguments

valuecode
is the character string name of the parameter.

newvalue
is the numeric string name of the parameter.

Details

The APPSRVSET function takes one character string parameter and one numeric string parameter and returns a numeric string result.


Examples

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);


Contents SAS/IntrNet 8.2: Application Dispatcher Previous Next