Hello all,
I have the following jsp page and want to call report with parameter from jsp.
I have three parameter Roleid, Reportmonth and Reportyear on report.
I dont want screen which ask the user to enter parameter, i made the parameters hidden.
My query is how i can pass parameter to the report which are fetched from request object of jsp?
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="/birt.tld" prefix="birt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<head>
<title>Assessment</title>
</head>
<body>
<birt:viewer id="birtViewer" reportDesign="report/Copy2.rptdesign"
pattern="run"
height="600"
width="1000"
format="pdf"
scrolling="yes"
></birt:viewer>
</body>
</html>
Please give some guideline.
Thanks,
Sunil