4

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?

4

2 に答える 2

8

問題が正しい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で確認できます。

于 2012-10-18T11:11:56.853 に答える
0

Hakre..

If you are using static parameter then those parameter can be passed in the following way: "http://yourcompleteurl&parametername1=value1&parametername2=value2".

于 2012-10-18T11:09:21.453 に答える