Difference between revisions of "SUN Report Builder/Example"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (no thumb)
m (just made the licence Template work :-))
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
Data Model
 
Data Model
  
Report layout
+
The example will use a very simple, and common, data model. Two tables, one a list of products and the other a list of the cost for multiple purchases of each product. Referred to as One to Many ( 1..n) relation.
  
 +
Products Table ( Table2 )
 +
{| class="prettytable" cellpadding="10" border="1"
 +
| <center>ProductID</center>
 +
| <center>ProductName</center>
  
Functions used
+
|-
 +
| <center>0</center>
 +
| <center>Apples</center>
 +
 
 +
|-
 +
| <center>1</center>
 +
| <center>Oranges</center>
 +
 
 +
|-
 +
| <center>2</center>
 +
| <center>Grapes</center>
 +
 
 +
|-
 +
| <center>3</center>
 +
| <center>Melons</center>
 +
 
 +
|}
 +
 
 +
Product Cost Table ( Table1 )
 +
 
 +
{| class="prettytable" cellpadding="10" border="1"
 +
| <center>ProdID</center>
 +
| <center>Cost</center>
 +
 
 +
|-
 +
| <center>0</center>
 +
| <center>2</center>
 +
 
 +
|-
 +
| <center>0</center>
 +
| <center>1</center>
 +
 
 +
|-
 +
| <center>0</center>
 +
| <center>3</center>
 +
 
 +
|-
 +
| <center>0</center>
 +
| <center>4</center>
 +
 
 +
|-
 +
| <center>1</center>
 +
| <center>1</center>
 +
 
 +
|-
 +
| <center>1</center>
 +
|
 +
 
 +
|-
 +
| <center>1</center>
 +
| <center>4</center>
 +
 
 +
|-
 +
| <center>1</center>
 +
| <center>7</center>
 +
 
 +
|-
 +
| <center>2</center>
 +
| <center>9</center>
 +
 
 +
|-
 +
| <center>3</center>
 +
|
 +
 
 +
|-
 +
| <center>3</center>
 +
|
 +
 
 +
|}
 +
 
 +
The report will display all cost records for each product, and group by the product name. Therefore a query is used to put the data from the two tables into one contiguous result set, for use by the report builder.
 +
 
 +
[[Image:Sum_exmp_qry.gif]]
 +
 
 +
 
 +
Report layout - User defined functions
  
 
The Sun Report Builder allows creation of user defined functions at two levels. The report level and the group level.
 
The Sun Report Builder allows creation of user defined functions at two levels. The report level and the group level.
  
  
[[Image:Group Report Totals.gif|center|750px ]]
+
[[Image:Group Report Totals.gif|550px]]
 +
 
 +
Final report output
 +
 
 +
 
 +
[[Image:Sum_exmp_rpt.gif|center|thumb|200px]]
 +
 
 +
 
 +
[[Category:Sun Report Builder]]
 +
[[Category:Base Documentation]]
 +
{{CCBY}}

Latest revision as of 17:48, 22 January 2009

Data Model

The example will use a very simple, and common, data model. Two tables, one a list of products and the other a list of the cost for multiple purchases of each product. Referred to as One to Many ( 1..n) relation.

Products Table ( Table2 )

ProductID
ProductName
0
Apples
1
Oranges
2
Grapes
3
Melons

Product Cost Table ( Table1 )

ProdID
Cost
0
2
0
1
0
3
0
4
1
1
1
1
4
1
7
2
9
3
3

The report will display all cost records for each product, and group by the product name. Therefore a query is used to put the data from the two tables into one contiguous result set, for use by the report builder.

Sum exmp qry.gif


Report layout - User defined functions

The Sun Report Builder allows creation of user defined functions at two levels. The report level and the group level.


Group Report Totals.gif

Final report output


Sum exmp rpt.gif
Content on this page is licensed under the Creative Common Attribution 3.0 license (CC-BY).
Personal tools