...
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
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" label="Sample Report"/>
</config>
|