Hello,
A quick question that should be simple. I'm trying to embed a report into a jsp, the application using the birt.tld tag library. I got started using the following method:
<birt:viewer id="birtViewer"
reportDesign="test.rptdesign"
baseURL="
http://my-pc:8443/OptForceReports"
height="450"
width="700"
showToolbar="false"
showParameterPage="false"
format="html"></birt:viewer>
I don't want the user to see or enter any parameters, rather I'd like the jsp to pass in a parameter into this report automatically. How can I do this, as I'm not seeing any examples of this so far. Let's say the parameter name is Param1 and the value is: "123". Would I simply add a:
Param1="123"
to the above or use a different method?
Thanks in advance,
A.C.