SlideShare a Scribd company logo
UNIVERSE BEST PRACTICES
Rob Rohloff, OEM Sales Consultant
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 2
Universe Defined
Tips for Building the Universe
Advanced Object Creation Tips
Resolving Loops
Conclusion
AGENDA
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 3
Copyright © 2007 Business Objects S.A. All rights reserved.
WHAT IS A UNIVERSE?
The Universe is a semantic layer
that contains metadata (data
about data)
Translates the complexities of the
database into business-friendly
terms for end-users.
Allows for correct SQL generation
Allows manipulation of data
based on the metadata and on
the additional business logic in
the Universe
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 4
Copyright © 2007 Business Objects S.A. All rights reserved.
UNIVERSE:
WHAT DOES IT LET YOU DO?
Simple, intuitive data analysis
Report creation using business terms instead of
SQL
Reuse of business logic
Automatic report drilling (by defining hierarchies)
Multiple data provider synchronization
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 5
Copyright © 2007 Business Objects S.A. All rights reserved.
UNIVERSE:
WHERE CAN YOU USE IT?
Crystal
Reports
Desktop
Intelligence
Web Intelligence
LiveOffice
EPM
Query as a
Web Service
Data
Federator
Universe
Xcelsius
Databases
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 6
Universe Defined
Tips for Building the Universe
Advanced Object Creation Tips
Resolving Loops
Conclusion
AGENDA
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 7
ADDING TABLES & JOINS
Build your universe piece-by-piece
Insert tables one at a time, that way it can be understood.
Do not use the automatic universe creation tool. Using
this wizard will build a universe that you do not
understand.
Take each table, join, cardinality etc one at a time.
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 8
DEFINING OBJECTS
Object and class naming
Name in business terms
Remember: you are trying to enable non-technical
people to build their own reports
Use object formatting
When there is a need to format an object in the same
way every time it is used.
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 9
DEFINING OBJECTS
Use complex objects
Concatenate descriptions
Translate codes
Build common calculations into the universe
whenever possible
Build logic into your objects
Use condition objects
Users don’t like to build conditions in the query
Define measure objects correctly
Not every number is a measure!
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 10
Universe Defined
Tips for Building the Universe
Advanced Object Creation Tips
Resolving Loops
Conclusion
AGENDA
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 11
TIP 1: AVOID WHERE CLAUSES
Problem: How to separate credit invoices from regular invoices into 2
separate objects?
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 12
AVOID ‘WHERE’ CLAUSES
2 Objects: USA Sales and Germany Sales
What happens if a user pulls both objects into a query?
WHERE sales.country = ‘USA’ AND sales.country = ‘Germany’
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 13
USE CASE STATEMENT INSTEAD
WRONG!
WHERE clauses
are rarely the right
answer!
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 14
CASE STATEMENT
CORRECT!
CASE statements
can “bucket” data
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 15
CASE STATEMENT DEMO
Demonstration
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 16
TIP 2: CUSTOM LISTS OF VALUES
Which is better?
OR
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 17
CUSTOM LISTS OF VALUES DEMO
Demonstration
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 18
TIP 3: USE AGGREGATION IN ALL
MEASURE OBJECTS
Always perform aggregation in a measure. Why?
Measures, by definition, are aggregated
Although WebIntelligence will aggregate measure objects
locally, the database is far more powerful.
If the object does not contain a SQL aggregate function
such as SUM stated in its SELECT clause, no GROUP
BY clause will be generated
SELECT invoices.amount vs. SELECT sum(invoices.amount)
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 19
TIP 4: USE RELATIVE DATES
Users don’t like to fill in
date prompts every
time they refresh a
report
Scheduling can be
difficult
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 20
RELATIVE DATES
Which is more user friendly?
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 21
RELATIVE DATES
SELECT 'Last 7 Days' AS Date_Range,
CONVERT(smalldatetime, { fn curDATE() }) - 6 AS Begin_Date,
CONVERT(smalldatetime, { fn curDATE() }) AS End_Date
FROM dbo.syscolumns
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 22
TIP 6: USE DYNAMIC HTML IN OBJECTS
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 23
DYNAMIC HTML DEMO
Demonstration
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 24
Universe Defined
Tips for Building the Universe
Advanced Object Creation Tips
Resolving Loops
Conclusion
AGENDA
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 25
LOOPS
Definition:
More than one “path”
through the SQL
Problem:
Business Objects will not
know what “path” to
choose
countries
customers
orders
order_lines products
f
a
b
c
d
suppliers
e
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 26
RESOLVING LOOPS
Three possible resolutions:
Remove a join
countries
customers
orders
order_lines products
f
a
b
c
d
suppliers
e
countries
customers
orders
order_lines products
a
b
c
d
suppliers
e
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 27
RESOLVING LOOPS
Three possible resolutions:
Remove a join
Add an alias
customers
orders
order_lines products
a
b
c
d
suppliers
countriescountries
ALIAS
customer
countries
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 28
RESOLVING LOOPS
Three possible resolutions:
Remove a join
Add an alias
Add contexts
countries
customers
orders
order_lines products
f
a
b
c
d
suppliers
e
CONTEXT 1: Suppliers
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 29
RESOLVING LOOPS
Three possible resolutions:
Remove a join
Add an alias
Add contexts
countries
customers
orders
order_lines products
f
a
b
c
d
suppliers
e
CONTEXT 2: Customers
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 30
Universe Defined
Tips for Building the Universe
Advanced Object Creation Tips
Resolving Loops
Conclusion
AGENDA
COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 31
Copyright © 2007 Business Objects S.A. All rights reserved.
CONCLUSION
The Universe is a powerful
semantic layer that translates the
database into business-friendly
terms
It is core to all Business Objects
Information & Delivery tools
Time should be taken to build it
correctly using best practices
Leverage the power of the Universe
to build complex objects that further
simplify the user experience
UNIVERSE BEST PRACTICES
End

More Related Content

PPTX
SAP Business Objects Universe Designer & Introduction to Business Intelligenc...
PDF
Sap business objects BI4.0 reporting presentation
PPTX
Power bi premium
PDF
Power BI Dashboard | Microsoft Power BI Tutorial | Data Visualization | Edureka
PPT
Introduction To Sql Services
PPTX
ADO .NET by Sonu Vishwakarma
PDF
Snow pro advanced architect exam guide - snowflake
PDF
SAP Business Objects Universe Designer & Introduction to Business Intelligenc...
Sap business objects BI4.0 reporting presentation
Power bi premium
Power BI Dashboard | Microsoft Power BI Tutorial | Data Visualization | Edureka
Introduction To Sql Services
ADO .NET by Sonu Vishwakarma
Snow pro advanced architect exam guide - snowflake

What's hot (13)

PPTX
Getting power bi
PPTX
Benefits of SQL Server 2017 and 2019 | IDERA
PPT
Oracle Discoverer Reports via BSS
PPT
SSIS begineer
PPTX
AAO BI Portfolio
PPTX
SSAS Tabular model importance and uses
PPTX
Chris O'Brien - Intro to Power BI for Office 365 devs (March 2017)
PPTX
Tableau free tutorial
PDF
Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
PPTX
Basic introduction to power query
PPTX
Endeca
PPT
ODI (Oracle Data Integrator)
PPTX
Getting power bi
Benefits of SQL Server 2017 and 2019 | IDERA
Oracle Discoverer Reports via BSS
SSIS begineer
AAO BI Portfolio
SSAS Tabular model importance and uses
Chris O'Brien - Intro to Power BI for Office 365 devs (March 2017)
Tableau free tutorial
Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
Basic introduction to power query
Endeca
ODI (Oracle Data Integrator)
Ad

Similar to BO Universe best practices (20)

PDF
The Next Five Years of Rails
PPT
Daniel Egan Msdn Tech Days Oc Day2
PPT
Crystal Reports - The Power and Possibilities of SQL Expressions
PPT
Flex360 Milan 2008 - Flex & Webservices
PPTX
Oracle DV V4 new features overview
PDF
MaxTECH Technical Training - Maximo Custom Audit Solution
PDF
ASP.NET 8 Developer Roadmap By ScholarHat PDF
PPT
ADO.NET Entity Framework DevDays
PDF
Enterprise Level Application Architecture with Web APIs using Entity Framewor...
PPT
BI 2008 Simple
PPTX
DBT ELT approach for Advanced Analytics.pptx
PPSX
Jessica Herndon Sql Portfolio
PPTX
Kelley Blue Book and Cloud Computing
PPT
Windows Azure and a little SQL Data Services
PDF
MySQL 8.0 Introduction to NoSQL + SQL
PDF
Drupalcon Mumbai
PDF
Foundations of programming
PDF
Using object dependencies in sql server 2008 tech republic
PDF
Sybase job interview_preparation_guide
PPTX
Workbooks_Testings_Designs_&_Process.pptx
The Next Five Years of Rails
Daniel Egan Msdn Tech Days Oc Day2
Crystal Reports - The Power and Possibilities of SQL Expressions
Flex360 Milan 2008 - Flex & Webservices
Oracle DV V4 new features overview
MaxTECH Technical Training - Maximo Custom Audit Solution
ASP.NET 8 Developer Roadmap By ScholarHat PDF
ADO.NET Entity Framework DevDays
Enterprise Level Application Architecture with Web APIs using Entity Framewor...
BI 2008 Simple
DBT ELT approach for Advanced Analytics.pptx
Jessica Herndon Sql Portfolio
Kelley Blue Book and Cloud Computing
Windows Azure and a little SQL Data Services
MySQL 8.0 Introduction to NoSQL + SQL
Drupalcon Mumbai
Foundations of programming
Using object dependencies in sql server 2008 tech republic
Sybase job interview_preparation_guide
Workbooks_Testings_Designs_&_Process.pptx
Ad

More from Malin Johansson (20)

PPTX
Ledningsutveckling 20101207
DOC
SQL Facit
DOC
SQL övningar
PPT
BO universe
PPTX
Sql utbldning
PPTX
Beslutsstöd
PPT
Bi bibel
PPT
Gate 1 beslutsstöd
PDF
My back on track
PDF
Lararhandledning barnens livräddningssällskap 2014
PDF
Grundlaggande redovisning, sm (1)
PDF
Objektbeskrivning släntstigen 6
PDF
Stadgar vintergatan 4
PDF
Objektbeskrivning Stagneliusvägen 31
PDF
Tillväxtverket
RTF
CV Malin Johansson MODUL1
DOCX
EQT Avstämning Deal Database
PPTX
2008 09-26 demonstration monthly reporting in deal database
DOCX
Avtal dn b nor
PDF
Länsförsäkringar halland årsredovisning 2014
Ledningsutveckling 20101207
SQL Facit
SQL övningar
BO universe
Sql utbldning
Beslutsstöd
Bi bibel
Gate 1 beslutsstöd
My back on track
Lararhandledning barnens livräddningssällskap 2014
Grundlaggande redovisning, sm (1)
Objektbeskrivning släntstigen 6
Stadgar vintergatan 4
Objektbeskrivning Stagneliusvägen 31
Tillväxtverket
CV Malin Johansson MODUL1
EQT Avstämning Deal Database
2008 09-26 demonstration monthly reporting in deal database
Avtal dn b nor
Länsförsäkringar halland årsredovisning 2014

Recently uploaded (20)

PPTX
TimeBee vs. Toggl: Which Time Tracking Tool is Best for You?
PDF
4. Finance for non-financial managers.08.08.2025.pdf
PDF
Decision trees for high uncertainty decisions
PPTX
ELS-07 Lifeskills ToT PPt-Adama (ABE).pptx
PPTX
Introduction to Computing Profession.pptx
PDF
The Potential for EV Battery Recycling in Europe.pdf
PPTX
Structure of Organization in Professional Practices.pptx
DOC
BHCC毕业证学历认证,埃德蒙学院毕业证毕业证书样本
PPTX
Daily stand up meeting on the various business
PDF
Why DevOps Teams Are Dropping Spreadsheets for Real-Time Cloud Hygiene.pdf
PDF
Captivating LED Visuals, Built to Impress Brightlink.pdf
DOC
NGU毕业证学历认证,阿肯色大学史密斯堡分校毕业证国外文凭
PDF
AgriTech-Indias-Sunrise-Sector- Investor
PPTX
Spread Maya's Sustainable Product Collection 2025.pptx
PPTX
Transforming Finance with Ratiobox – Oracle NetSuite Bookkeeping & Accounting...
PDF
AI Cloud Sprawl Is Real—Here’s How CXOs Can Regain Control Before It Costs Mi...
PDF
Qloudhost DMACA ignored hosting provider
PDF
india-2024-agrifoodtech-investment-report.pdf
PPT
Organizational Culture and Management.ppt
PPT
chap9.New Product Development product lifecycle.ppt
TimeBee vs. Toggl: Which Time Tracking Tool is Best for You?
4. Finance for non-financial managers.08.08.2025.pdf
Decision trees for high uncertainty decisions
ELS-07 Lifeskills ToT PPt-Adama (ABE).pptx
Introduction to Computing Profession.pptx
The Potential for EV Battery Recycling in Europe.pdf
Structure of Organization in Professional Practices.pptx
BHCC毕业证学历认证,埃德蒙学院毕业证毕业证书样本
Daily stand up meeting on the various business
Why DevOps Teams Are Dropping Spreadsheets for Real-Time Cloud Hygiene.pdf
Captivating LED Visuals, Built to Impress Brightlink.pdf
NGU毕业证学历认证,阿肯色大学史密斯堡分校毕业证国外文凭
AgriTech-Indias-Sunrise-Sector- Investor
Spread Maya's Sustainable Product Collection 2025.pptx
Transforming Finance with Ratiobox – Oracle NetSuite Bookkeeping & Accounting...
AI Cloud Sprawl Is Real—Here’s How CXOs Can Regain Control Before It Costs Mi...
Qloudhost DMACA ignored hosting provider
india-2024-agrifoodtech-investment-report.pdf
Organizational Culture and Management.ppt
chap9.New Product Development product lifecycle.ppt

BO Universe best practices

  • 1. UNIVERSE BEST PRACTICES Rob Rohloff, OEM Sales Consultant
  • 2. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 2 Universe Defined Tips for Building the Universe Advanced Object Creation Tips Resolving Loops Conclusion AGENDA
  • 3. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 3 Copyright © 2007 Business Objects S.A. All rights reserved. WHAT IS A UNIVERSE? The Universe is a semantic layer that contains metadata (data about data) Translates the complexities of the database into business-friendly terms for end-users. Allows for correct SQL generation Allows manipulation of data based on the metadata and on the additional business logic in the Universe
  • 4. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 4 Copyright © 2007 Business Objects S.A. All rights reserved. UNIVERSE: WHAT DOES IT LET YOU DO? Simple, intuitive data analysis Report creation using business terms instead of SQL Reuse of business logic Automatic report drilling (by defining hierarchies) Multiple data provider synchronization
  • 5. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 5 Copyright © 2007 Business Objects S.A. All rights reserved. UNIVERSE: WHERE CAN YOU USE IT? Crystal Reports Desktop Intelligence Web Intelligence LiveOffice EPM Query as a Web Service Data Federator Universe Xcelsius Databases
  • 6. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 6 Universe Defined Tips for Building the Universe Advanced Object Creation Tips Resolving Loops Conclusion AGENDA
  • 7. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 7 ADDING TABLES & JOINS Build your universe piece-by-piece Insert tables one at a time, that way it can be understood. Do not use the automatic universe creation tool. Using this wizard will build a universe that you do not understand. Take each table, join, cardinality etc one at a time.
  • 8. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 8 DEFINING OBJECTS Object and class naming Name in business terms Remember: you are trying to enable non-technical people to build their own reports Use object formatting When there is a need to format an object in the same way every time it is used.
  • 9. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 9 DEFINING OBJECTS Use complex objects Concatenate descriptions Translate codes Build common calculations into the universe whenever possible Build logic into your objects Use condition objects Users don’t like to build conditions in the query Define measure objects correctly Not every number is a measure!
  • 10. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 10 Universe Defined Tips for Building the Universe Advanced Object Creation Tips Resolving Loops Conclusion AGENDA
  • 11. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 11 TIP 1: AVOID WHERE CLAUSES Problem: How to separate credit invoices from regular invoices into 2 separate objects?
  • 12. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 12 AVOID ‘WHERE’ CLAUSES 2 Objects: USA Sales and Germany Sales What happens if a user pulls both objects into a query? WHERE sales.country = ‘USA’ AND sales.country = ‘Germany’
  • 13. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 13 USE CASE STATEMENT INSTEAD WRONG! WHERE clauses are rarely the right answer!
  • 14. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 14 CASE STATEMENT CORRECT! CASE statements can “bucket” data
  • 15. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 15 CASE STATEMENT DEMO Demonstration
  • 16. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 16 TIP 2: CUSTOM LISTS OF VALUES Which is better? OR
  • 17. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 17 CUSTOM LISTS OF VALUES DEMO Demonstration
  • 18. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 18 TIP 3: USE AGGREGATION IN ALL MEASURE OBJECTS Always perform aggregation in a measure. Why? Measures, by definition, are aggregated Although WebIntelligence will aggregate measure objects locally, the database is far more powerful. If the object does not contain a SQL aggregate function such as SUM stated in its SELECT clause, no GROUP BY clause will be generated SELECT invoices.amount vs. SELECT sum(invoices.amount)
  • 19. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 19 TIP 4: USE RELATIVE DATES Users don’t like to fill in date prompts every time they refresh a report Scheduling can be difficult
  • 20. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 20 RELATIVE DATES Which is more user friendly?
  • 21. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 21 RELATIVE DATES SELECT 'Last 7 Days' AS Date_Range, CONVERT(smalldatetime, { fn curDATE() }) - 6 AS Begin_Date, CONVERT(smalldatetime, { fn curDATE() }) AS End_Date FROM dbo.syscolumns
  • 22. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 22 TIP 6: USE DYNAMIC HTML IN OBJECTS
  • 23. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 23 DYNAMIC HTML DEMO Demonstration
  • 24. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 24 Universe Defined Tips for Building the Universe Advanced Object Creation Tips Resolving Loops Conclusion AGENDA
  • 25. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 25 LOOPS Definition: More than one “path” through the SQL Problem: Business Objects will not know what “path” to choose countries customers orders order_lines products f a b c d suppliers e
  • 26. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 26 RESOLVING LOOPS Three possible resolutions: Remove a join countries customers orders order_lines products f a b c d suppliers e countries customers orders order_lines products a b c d suppliers e
  • 27. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 27 RESOLVING LOOPS Three possible resolutions: Remove a join Add an alias customers orders order_lines products a b c d suppliers countriescountries ALIAS customer countries
  • 28. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 28 RESOLVING LOOPS Three possible resolutions: Remove a join Add an alias Add contexts countries customers orders order_lines products f a b c d suppliers e CONTEXT 1: Suppliers
  • 29. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 29 RESOLVING LOOPS Three possible resolutions: Remove a join Add an alias Add contexts countries customers orders order_lines products f a b c d suppliers e CONTEXT 2: Customers
  • 30. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 30 Universe Defined Tips for Building the Universe Advanced Object Creation Tips Resolving Loops Conclusion AGENDA
  • 31. COPYRIGHT © 2007 BUSINESS OBJECTS S.A. ALL RIGHTS RESERVED.SLIDE 31 Copyright © 2007 Business Objects S.A. All rights reserved. CONCLUSION The Universe is a powerful semantic layer that translates the database into business-friendly terms It is core to all Business Objects Information & Delivery tools Time should be taken to build it correctly using best practices Leverage the power of the Universe to build complex objects that further simplify the user experience