Weave uses BIRT as its default reporting engine for producing printed reports. The reports are built using the BIRT Report Designer application that is part of BIRT and then the report designs produced by the report designer are registered with Weave to make them available for generation by users.
BIRT Report Designer
Note |
---|
The BIRT report designer is no longer installed as part of Weave, it is now a separate download. To start the report designer use the birt.cmd batch file which is installed in the weave directory where you installed the desginer, do not use the birt.exe that is installed under the birt directory. |
...
Info |
---|
The Weave BIRT plugin will look in the Weave workspace directory for report designs by default but it's recommended that you place report designs in a sub folder of the workspace directory, in this case the reports directory, to keep the workspace directory clean and organized. |
If you the click the Next button you'll be presented with a screen that allows you to choose a starting template to use for the report. Generally the Blank Report is a suitable starting point. Note however that it
Info |
---|
The Blank Report template does include the current date as part of the Master Page, so it's not entirely blank. |
For this sample I'll just add a simple text box to the report since the intent here is to show how to create a BIRT report design, not how to generate a full blown BIRT report.
Once this report is saved the design file will then be available in the ...\weave\platform\workspace\reports directory and should be ready to register in Weave.
...
To create either type of report registration requires the setting of the appropriate namespace for the BIRT configuration items in the config.xml file, the namespace for BIRT reports is com.cohga.server.report.birt, so if we include BIRT reports in a separate config file called reports.xml and include that into out main config.xml file then the initial contents of the report.xml file should be:
Code Block |
---|
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns="urn:com.cohga.server.config#1.0" xmlns:birt="urn:com.cohga.server.report.birt#1.0">
</config>
|
Then within the config tags we can add a new BIRT report entry for our sample report
Code Block |
---|
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns="urn:com.cohga.server.config#1.0" xmlns:birt="urn:com.cohga.server.report.birt#1.0">
<birt:report id="sample" report="reports\sample_report"/>
</config>
|
Then when we refresh the client the new report should appear in the Report view
and if we generate the report (in this case as HTML) we should get the following output
And that's the basics of how to get a BIRT report into Weave.
Report Customization
The first thing we need to look at the the label for the report in the report view. The previous screen show shows the report with the label "Blank Report", which is the default Display Name for a report when it's generated from the Blank Report template
So we could go back to the report design, change the Display Name as save the report, then the next time the client starts the report will have the new label in the report view.
Alternatively we can set the label directly in the report registration in the config file
...
.
...