Contents SAS/IntrNet 8.2: Application Dispatcher Previous Next

APPSRVGETC


Returns the character value of a PROC APPSRV parameter setting

Syntax
Arguments
Details
Examples


Syntax

VALUE = APPSRVGETC( valuecode )


Arguments

valuecode
is the character string name of the parameter.

Details

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


Examples

SAS Statements Results
auth=appsrvgetc('auth');
put auth=;
auth=NONE
initpgm=appsrvgetc('request init');
put initpgm=;
initpgm=MYLIB.MYINIT.SAS
termpgm=appsrvgetc('request term');
put termpgm=;
termpgm=MYLIB.MYCAT.MYTERM.SCL
initpgm=appsrvgetc('session init');
put initpgm=;
initpgm=MYLIB.MYCAT.SESSINIT.SOURCE
termpgm=appsrvgetc('session term');
put termpgm=;
termpgm=MYLIB.MYCAT.MYTERM.SCL
version=appsrvgetc('version');
put version=;
version=SAS/IntrNet Application Server Release 8.2 (built 369)


Contents SAS/IntrNet 8.2: Application Dispatcher Previous Next