business object - creating a universe a step by step tutorial

13
Business objects training Creating a Universe: A step by step tutorial Business Objects products are Number One in Reporting, Data Warehousing, and ETL Categories. BusinessObjects 6.0 is used as an OLAP tool and a reporting tool. Here we will learn how to use this product for creating a universe. Universe Universes present the information stored in your company’s databases in a very organized manner. They allow access to this information,without the user having to be an expert in relational database structure. Universes are the most popular and versatile methods of retrieving data for a document. The use of universes is what makes Business Objects truly powerful and easy to use. A universe contains no data itself. However, it stores the instructions on how to retrieve data from some data source, such as a database.Universes are simply computer files that are stored in a repository. A repository is a database that stores, among other things, the universe definitions. When you select a universe from the list, Business Objects will copy the universe file from the repository to your local hard drive. Once the universe file is copied onto the hard drive, Business Objects will use this file to create the SQL instructions to retrieve the information for your reports. The next time the same universe is used to create a report, Business Objects will check the repository to see if the latest version of the universe is on your computer. If the latest version is not on your computer Business Objects will copy the latest version from the repository. We will now see how to create a universe from the SQL server database - Northwind. Create universe: Choose ODBC Drivers from below. Page 1 of 13 Business objects training: A step by step tutorial on Creating a Universe 28/10/2008 http://www.geocities.com/bo_training/?200828

Upload: odhvutt

Post on 16-Nov-2014

26.532 views

Category:

Documents


4 download

TRANSCRIPT

Page 1: Business Object - Creating a Universe a Step by Step Tutorial

Business objects training

Creating a Universe: A step by step tutorial

Business Objects products are Number One in Reporting, Data Warehousing, and ETL Categories. BusinessObjects 6.0 is used as an OLAP tool and a reporting tool. Here we will learn how to use this product for creating a universe.

Universe

Universes present the information stored in your company’s databases in a very organized manner. They allow access to this information,without the user having to be an expert in relational database structure. Universes are the most popular and versatile methods of retrieving data for a document. The use of universes is what makes Business Objects truly powerful and easy to use.

A universe contains no data itself. However, it stores the instructions on how to retrieve data from some data source, such as a database.Universes are simply computer files that are stored in a repository. A repository is a database that stores, among other things, the universe definitions. When you select a universe from the list, Business Objects will copy the universe file from the repository to your local hard drive. Once the universe file is copied onto the hard drive, Business Objects will use this file to create the SQL instructions to retrieve the information for your reports. The next time the same universe is used to create a report, Business Objects will check the repository to see if the latest version of the universe is on your computer. If the latest version is not on your computer Business Objects will copy the latest version from the repository.

We will now see how to create a universe from the SQL server database - Northwind.

Create universe:

Choose ODBC Drivers from below.

Page 1 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 2: Business Object - Creating a Universe a Step by Step Tutorial

If you don’t have a DSN you will need to create one.

Page 2 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 3: Business Object - Creating a Universe a Step by Step Tutorial

You can leave them as it is below.

Page 3 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 4: Business Object - Creating a Universe a Step by Step Tutorial

OK Now you have made the definitions. Lets go to the main screen Now.

Right mouse click for the context menu and select tables

Page 4 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 5: Business Object - Creating a Universe a Step by Step Tutorial

Select your tables and create relation ships between them. This is something similar to MS Acess relationships. Map Primary keys and foreign keys.

Page 5 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 6: Business Object - Creating a Universe a Step by Step Tutorial

Now GO to insert class in Editing Toolbar.

Dimensions:

Dimensions usually represent the nouns in our database. For example, dimensions can represent employee ID’s, car models, company stocks, dates, etc. We usually total on dimensions. For example, we may want to know the sales volume for a certain date, the number of new employees in a given month, or the total value of the stocks in a

portfolio.

We are going to make a class for products now. This dimension will take the product name from products table field productName.

Page 6 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 7: Business Object - Creating a Universe a Step by Step Tutorial

This is where you have to select the field from table or view.

Make sure you parse the statement.

Page 7 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 8: Business Object - Creating a Universe a Step by Step Tutorial

Select Dimension.

Page 8 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 9: Business Object - Creating a Universe a Step by Step Tutorial

Similarly category also could be created.

Page 9 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 10: Business Object - Creating a Universe a Step by Step Tutorial

You can create more dimensions as required in the same way.

Measures

Details or measures are objects that represent attributes of dimension data. Typically,

we will not subtotal or organize data around a detail object. For example, a detail could be the weight of a product or a person’s first name.

Page 10 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 11: Business Object - Creating a Universe a Step by Step Tutorial

Measure objects generally represent aggregated data. Typical measure objects may sum, count, max, min or average. For example, a measure object may sum the daily earnings in a given time period or count the number of employees in a department.

Add another class as Measure

After this just like we had followed for dimensions create an object from

dbo.Order Details".Quantity AS Quantity. Make sure you select ‘Measure’ as shown in below screen and Aggregate as SUM.

Page 11 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 12: Business Object - Creating a Universe a Step by Step Tutorial

Now your main panel looks like this.

Similarly create another measure for unit price from dbo.Order Details".UnitPrice.

Calculated Measure:

Now we will do a calculated measure,

Finding the total value of the order.

Page 12 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828

Page 13: Business Object - Creating a Universe a Step by Step Tutorial

We are going to create Total value as a calculated measure.

The formula is:

"dbo.Order Details".UnitPrice*"dbo.Order Details".Quantity

Now save the universe as NWIND.UNV

You have created a universe now.

Page 13 of 13Business objects training: A step by step tutorial on Creating a Universe

28/10/2008http://www.geocities.com/bo_training/?200828