APPSRVGETC Function

Returns the character value of a PROC APPSRV parameter setting

Syntax

VALUE=APPSRVGETC(valuecode)

Required Argument

valuecode
is the character string name of the parameter.

Details

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

Example: Sample Statements and Results

Sample Statements and Results
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 9.3 (Build 682)
fname = appsrvgetc('log file');
put fname=;
fname=
/u/intrnet/services/default/logs/Fri_5801.log