In this first example,
an external link to the Google Web page is specified. The parameters
in the link generate a search on Google. In this example, the following
optional link parameters are specified:
-
In the Parameter Name column, select_date is
selected.
-
In the Parameter Data column, date is
selected.
The following link is generated:
http://www.google.com/search?hl-en&q={select_date}
The second example describes linking to a SAS Stored Process. In this example, a
KPI indicator references SASHELP.CLASS and the indicator display setting called
Range
Value is set to AGE. The following optional link parameters
are specified:
-
In the Parameter Name column, select_age is
selected.
-
In the Parameter Data column, Age is
selected.
The selected stored process called
Stored
Process with Parameter is defined as follows:
(stpWithParamater.sas)
goptions gsfname=_webout gsfmode=replace;
goptions device=png;
data temp; set sashelp.class;
if age="&select_age" then output;
run;
proc gchart data=temp; vbar age / discrete; run; quit;