BIRT generate dynamic reports - birt

I created a report in birt, where I would like to click on one of the data points in the report. Then it should link to a new dynamically generated report, that shows the data from the date where I clicked on the last report.
I got a little .gif for you, to demonstrate what I've already done.
HERE
I did this by creating two reports. The first one being the graph with the two lines which represent random test data. When I press on one of the rectangles from the graph, a hyperlink gets called, which sends me to the second report. This was done by adding a mouse click interaction on the Y values with a drill-through that directs you to another report.
Here is my problem: I want the 2nd report to dynamically adapt according to the date which I selected on the first report. Like seen in the example .gif. Select 31.07.2017 -> show detail from that date.
I don’t want to create a new report for every single date and manually link every single one of them to the correct date. This would be tedious and with updating, new data every day it would also be impossible to maintain.
So how do I do this?

Alright, I made it work with data set parameters and report parameters.
Details for the answer can be found HERE
All I had t do is define a paramater and pass the values from my report 1 to my report 2 via the parameter and its working!

Related

How can you display option sets within a SSRS report?

I'm new to Stack overflow and new to SSRS report building. I'm currently building a report that needs to display each option from and option set in a different column I also need to pull date a last and next date range for each option it is page grouped by a company name and then further grouped by the employee's full name. any help would be very much appreciated.
Excel mock-up
Report table layout
I need it to out put like the Excel image ideally if possible, I've found the value id's but i'm stumped as to how if I can at all display them in the columns I've labelled.
It looks like you need to use a matrix control in your report. It will display your values in a pivot view like Excel.
Microsoft Documentation

BIRT: Fit to whole page in report design?

I have a report and want to fix it to 1 page (A4) regardless of the number of rows in the table. Usually it's 10 rows but can be more in some cases.
Anyway I need to use BIRT in a fixed context (3rd party application), eg. no option to adjust the BIRT viewer or url params. Therefore how can I add this option to my report design so that it is applied automatically?
I don't think it is possible to force a render option from the report-design. If it was it would probably achieved by using this code fragment from "beforeRender" script of the report:
importPackage(Packages.org.eclipse.birt.report.engine.api);
reportContext.getRenderOption().setOption(IPDFRenderOption.PAGE_OVERFLOW,IPDFRenderOption.FIT_TO_PAGE_SIZE);
I tried it, it appears at this stage the BIRT task has already applied render options and therefore this new value is ignored.
If you have access to the source code of this third party app it is quite easy to add a "Fit to" PDF render option.
Otherwise you will have to change the report-design and make it a little bit more dynamic: there are many design tips allowing to fit a report in a single page, one of them is to change the height of some items by script depending on the number of rows of the table.

Changing columns order on export to CSV from SSRS 2008

We have a report developed in another tool that the user exports to Excel to manipulate the data. In the old tool, the columns are being saved in the same order as the dataset returned by the stored procedure. But in SSRS the columns sort is changed to the order that they are displayed on the screen. The user is a nut case and can't convince her to change the order of the columns on the screen report to match her old report sort, but on the other hand does not want to adapt to the new column order. Unfortunately the easiest solution (i.e. replacing the user :-)) is not implementable. Is there a property that I can use to change the sorting on the columns when they are exported. Without knowing much about it, I imagined ZIndex would have done something like that. But it is set to 0 and disabled, so I can't change it's value.
Thanks
I know it's years later but for the benefit of anyone who is in this predicament, a similar idea: in the same report, you create another tablix that will be your "output" tablix, where you arrange things as you please using the same dataset. Make this tablix with visibility hidden, and set it to "output" as necessary. Turn off all outputs from the first tablix. So you have basically a ghost tablix that only works when you export to csv.

Birt hyperlinked reports in single page

Is it possible to have 3 reports all linked to each other on a single page.
Suppose I have 3 reports. First one drills down to second and second drills down to third i.e. on clicking on first report the second opens and on clicking on second the third opens. Also the second report needs parameters which are passed down from the first report.
Now these reports open up in a new page on clicking. I want the second report to open below second report and third below second. Is this possible??
Short answer:
Yes
Longer answer:
There are a number of different ways of combining reports and linking them to each other in BIRT. Reports can be delivered as web pages, PDF, Excel, etc. Obviously differing deliveries would want different solutions.
If your are delivering to PDF where the report would be printed, you can essentially put three reports (tables) on the same document which all show the results based on the same parameters
If you are delivering as web pages you can have links in pretty much any place on the report that will jump to another report using a value as a parameter (i.e. Report1 = everything for a week; click on "Monday" see Report2 with just everything from Monday; click on "Noon" and see Report3 with just everything from Noon.

Different layout for 1st and rest pages of report

I currently have a detailed report to design:
A report which has different header-footer-detail for the first and rest of the pages. I tried to overcome the challange by using 2 Master Pages (not quite achieved anything yet) but I am stuck at the point which row count of 1st and rest of the pages... 1st page has 20 rest of the pages have 35 rows. Namely the question is:
"How can I set different pagebreak intervals for the table for each page?"
PS: BIRT version: 3.7
Edit: I've tried to create a group on row number and put a filter on row number to maintain flow between 2 different tables but no luck. (It didnt make real sense to put row filter but tried anyway :))
What you may need to do in the body section of your report is create a grid of one column and two rows. In the advanced properties for the upper cell, look under the section property for the Master Page setting, set that value equal to the name of your first master page. Place your report contents in that cell and set the master page references to your first master page as well. Repeat this for the second cell and references to the second page. Your table(s) have an advanced property for page break interval that you can adjust to control how many rows go on a page.
However if you want your table data to flow continuously from the first page into the second page and onward, I am not sure if this is possible but will update my answer if I find a way.

Resources