I am new to BIRT reporting. In my BIRT report I have two input parameters. I want to pass these two input parameters to the server through the query string (in the URL).
How can I do this?
問題が正しいURLを取得することだけである場合、これは次のようになります。
「YOUR_SERVER/your_birt_app / run?__ report = ReportName.rptdesign&Name_Parameter1 = Value1&Name_Paremeter2=Value2」。
「run」メソッドは、BIRTビューアーサーブレットにマップされたメソッドの1つです。他に2つあります:「フレームセット」と「プレビュー」。
これらの情報は、http ://www.eclipse.org/birt/phoenix/deploy/viewerUsage2.2.phpで確認できます。
Hakre..
If you are using static parameter then those parameter can be passed in the following way: "http://yourcompleteurl¶metername1=value1¶metername2=value2".