How to pass input parameters to URL in BIRT?

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 via the query string (in the URL).

How can i do this?

+4
source share
2 answers

If the only problem is to get the correct URL, it will be something like this:

"your_server / your_birt_app / mileage __ report = ReportName.rptdesign &? Name_Parameter1 = Value1 & Name_Paremeter2 = value2".

The run method is one of the methods displayed in the Servlet BIRT Viewer. There are two more: "frameset" and "preview".

You can check this data at: http://www.eclipse.org/birt/phoenix/deploy/viewerUsage2.2.php

+7
source

Hakre ..

If you use a static parameter, then this parameter can be passed as follows: "HTTP: // yourcompleteurl & parametername1 = value1 & parametername2 = value2".

0
source

Source: https://habr.com/ru/post/1440509/


All Articles