_OUTPUT_STANDARD_GRAPH_ Method

Outputs the URL that drives the standard GIF Graph request

Syntax

CALL SEND(OBJID,'_OUTPUT_STANDARD_GRAPH_',url,service, graph-type,
analysis-variable,statistic-variable, down-variable,across-variable,webcls);

Required Arguments

url
the URL for the next query.
Type:Character
service
the Application Broker service.
Type:Character
graph-type
the selected graph type.
Type:Character
analysis-variable
the analysis variable to graph.
Type:Character
statistic-variable
the statistic to graph.
Type:Character
down-variable
the down variable to graph.
Type:Character
across-variable
the analysis variable to graph.
Type:Character
webcls
the WEBEIS class name.
Type:Character

Example

The following example illustrates the use of this method:
url='/cgi-bin/broker';
service='default';
grphtype='VBAR';
grphvar='ACTUAL';
grphstat='SUM';
grphdown='COUNTRY';
grphacr='PRODTYPE';
webcls=' ';
call send (webid,'_OUTPUT_STANDARD_GRAPH_',url,service,
           grphtype,grphvar,grphstat,grphdown,grphacr,
           webcls);
The following output is produced:
<BR><BR><P>
<IMG CLASS="graph" SRC="/cgi-bin/broker?_program=sashelp.webeis.grf2way.scl
&_service=default&mddb=SASHELP.PRDMDDB&metabase=SASHELP.MBEIS&D=Geographic
&AC=Product%20Line&A=ACTUAL&S=SUM&grt=VBAR&gv=Actual%20Sales&gs=Sum&gd
=COUNTRY&DC=1&ACB=1&gac=PRODTYPE&GSB=PRODTYPE=TOTAL&SL=%20" 
ALT="Please wait."ALIGN=CENTER WIDTH=600 HEIGHT=450 BGCOLOR=SILVER></P>