Skip to main content



      Home
Home » Archived » BIRT » Get Source-Code for the eBook "BIRT: A Field Guide, 3rd Edition"
Get Source-Code for the eBook "BIRT: A Field Guide, 3rd Edition" [message #1691612] Wed, 08 April 2015 09:36 Go to next message
Eclipse UserFriend
I have the eBook "BIRT: A Field Guide, 3rd Edition".
I make the first example in "Chapter 12, Aggregating Data".
Does somebody know where to find the Source-Code for this example?
It can also be the Source-Code of another Editon of this eBook.
Re: Get Source-Code for the eBook "BIRT: A Field Guide, 3rd Edition" [message #1693139 is a reply to message #1691612] Wed, 22 April 2015 00:42 Go to previous messageGo to next message
Eclipse UserFriend
I'm not sure if there is code for the example. I'll look around and see if there is. Is there something specific I can help you with regarding aggregations?
Re: Get Source-Code for the eBook "BIRT: A Field Guide, 3rd Edition" [message #1693156 is a reply to message #1693139] Wed, 22 April 2015 03:08 Go to previous messageGo to next message
Eclipse UserFriend
Thanks for your reply.
I have solved the problem.

This is my working SQL-Code
SELECT 
classicmodels.customers.customernumber, 
classicmodels.customers.customername,
classicmodels.customers.addressline1,
classicmodels.customers.postalcode,
classicmodels.customers.city,
classicmodels.customers.country,
classicmodels.orders.ordernumber, 
classicmodels.orderdetails.orderlinenumber,
classicmodels.orderdetails.productcode,
classicmodels.orderdetails.quantityordered,
classicmodels.orderdetails.priceeach
FROM classicmodels.customers 
JOIN classicmodels.orders  ON classicmodels.customers.customernumber = classicmodels.orders.customernumber 
JOIN classicmodels.orderdetails  ON classicmodels.orders.ordernumber = classicmodels.orderdetails.ordernumber
WHERE classicmodels.customers.customernumber BETWEEN 100 AND 120
ORDER BY classicmodels.customers.customernumber ASC, classicmodels.orders.ordernumber ASC, classicmodels.orderdetails.orderlinenumber ASC
Re: Get Source-Code for the eBook "BIRT: A Field Guide, 3rd Edition" [message #1693287 is a reply to message #1693156] Wed, 22 April 2015 17:32 Go to previous message
Eclipse UserFriend
Great to hear! Thanks for the update!
Previous Topic:Dynamic image
Next Topic:global variable
Goto Forum:
  


Current Time: Wed Aug 27 10:49:21 EDT 2025

Powered by FUDForum. Page generated in 0.07055 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top