I have a question regarding a report. Is it possible to generate
multiple tables in birt out of one dataset? Like for example I want to
display a whole database schema.
So the report should look like:
Report of <database>
<table1>
<col1-name> | <col1-datatype>
....
and the same for table2 and so on
Obviously I don't want to manually create a paragraph for each table in
the (unknown) database.
Am 01.07.2011 15:02, schrieb Richard A. Polunsky:
> Why do you want to create separate tables? You could just have one
> table and group by schema_tablename.
Because I would like to add text paragraphs in between. The database
schema example was just a simplified example. I have an unknown number
of "groups" in my original datasource and I have some "common"
information for each group which would need to be put in front of the
"details" table which is then the "rows" of the group entries.
> I suppose you could create separate tables on the fly but that would
> require a lot of java code.
Would it be possible to have sub-reports and a parametrized dataset to
achieve something like this (I'm a BIRT beginner, so I'm not sure what
features overall BIRT has to offer for particular problems. I don't even
know if there exist parametrized datasets and if there is a possiblity
to loop over a parameter list and execute sub-reports for each list entry).