Hi
i want to Pass Multiple Parameters in Tabular Report.the requirement is on the click of data in the tabular report iwant to show a new window with another graph.here iam sending my code.
-* File click_on_tabular_report.fex
-DEFAULT &COUNTRY=&COUNTRY
-DEFAULT &IBIAPP_app=&IBIAPP_app
-DEFAULT &THEVALUE = 'ENGLAND'
-HTMLFORM BEGIN
<script>
function callthefex(parm1,parm2) {
var urlcall = "/ibi_apps/WFServlet?IBIF_ex="
var thepath ="&IBIAPP_app=ibisamp"
var thefex = "carinst"
var theparm = "&COUNTRY="
//alert(urlcall+thefex+thepath+theparm+parm1)
window.open(urlcall+thefex+thepath+theparm+parm1,"somename","top=0 left=0 height=500 width=500");
}
-HTMLFORM END
-RUN
SET CSSURL =
http://localhost:8080/approot/benchmarkbi/mystyle.cssAPP PATH IBISAMP
TABLE FILE CAR
SUM RC DC
BY COUNTRY
BY CAR
HEADING
"CLICK ON ME"
ON TABLE NOTOTAL
ON TABLE SET HTMLCSS ON
ON TABLE SET ONLINE-FMT HTML
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='TIMES NEW ROMAN',
SIZE=10,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
$
TYPE=REPORT,
-* LINE=1,
-* OBJECT=TEXT,
-* ITEM=1,
-* CLASS=NOUNDERLINE,$
JAVASCRIPT=callthefex('&THEVALUE'),
$
ENDSTYLE
END
please suggest me how to Pass Multiple Parms in report.
Thanks,
Kalyan.S
------------------------------------
WebFOCUS 7.1.4, Win XP SP2,
Oracle8i.
------------------------------------