_OUTPUT_BOOKMARK_URL_ Method

Outputs the bookmarkURL JavaScript string on the Report page for the Bookmark button URL

Syntax

CALL SEND(OBJID,'_OUTPUT_BOOKMARK_URL_',vrflag,url, service-name,analysis-variable,
statistic,down-variable,graph-type, background-type,background-value,title, webeis-class);

Required Arguments

vrflag
the View Report button flag.
Type:Numeric
url
the Application Broker component of the URL.
Type:Character
service-name
the Application Broker service value.
Type:Character
analysis-variable
the analysis variable to graph.
Type:Character
statistic
the statistic to graph.
Type:Character
down-variable
the down variable to graph.
Type:Character
graph-type
the graph type (BLOCK, HBAR, PIE, PLOT, or VBAR).
Type:Character
background-type
the background type (IMAGE or COLOR). This value is optional.
Type:Character
background-value
the background value. This value is optional.
Type:Character
title
the HTML page title.
Type:Character
webeis-class
the WEBEIS class name.
Type:Character

Example

vrflag=1;
url='/cgi-bin/broker';
service='default';
grphvar='ACTUAL';
grphstat='SUM';
grphdown='COUNTRY';
grphtype='VBAR';
bgtype='COLOR';
bg='yellow';
title='1995 Sales Report';
webcls='SASHELP.WEBEIS.WEBEIS';
call send(_self_,'_OUTPUT_BOOKMARK_URL_',vrflag,url,service,grphvar,grphstat,
          grphdown,grphtype,bgtype,bg,title,webcls);
The following output is produced:
bookmarkURL=
   "http://mywebserver/cgi-bin/broker/.csv?_PROGRAM=SASHELP.WEBEIS.SHOWRPT.SCL
   &_SERVICE=default&_DEBUG=0&MDDB=SASHELP.PRDMDDB&METABASE=SASHELP&D=COUNTRY
   &AC=YEAR&A=ACTUAL&A1S1=SUM&BGTYPE=COLOR&BG=YELLOW&GRT=VBAR&DC=1&ACB=1
   &ST=1&GL=1&GSC=1&SSL=1&SH=3&SW=15&GH=450&GW=600&DP=1"