Macros for SAS Application Developers
https://github.com/sasjs/core
Loading...
Searching...
No Matches
mm_getwebappsrvprops.sas File Reference

Retrieves properties of the SAS web app server. More...

Go to the source code of this file.

Detailed Description

Usage:

%mm_getwebappsrvprops(outds= some_ds)
data _null_;
  set some_ds(where=(name='webappsrv.server.url'));
  put value=;
run;
Parameters
[out]outds=the dataset to create that contains the list of properties
Returns
outds dataset containing all properties
Warning
The following filenames are created and then de-assigned:
filename __in clear;
filename __out clear;
libname __shake clear;
Version
9.4
Author
Allan Bowe https://github.com/sasjs/core

Definition in file mm_getwebappsrvprops.sas.