Book Image

SAP BusinessObjects Reporting Cookbook

By : Yoav Yohav
Book Image

SAP BusinessObjects Reporting Cookbook

By: Yoav Yohav

Overview of this book

Table of Contents (21 chapters)
SAP BusinessObjects Reporting Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Filtering matched values


Another relation between datasets would be to filter only the matched values.

The main operators available when merging the datasets are:

  • Union: This unifies the two datasets whether or not they have common values; this operator is similar to a full outer join.

  • Right union: This unifies only the values that exist in dataset A with all the common and uncommon values of dataset B. This operator is similar to a right outer join.

  • Left union: This unifies only the values that exists in dataset B with all the common and uncommon values of dataset A. This operator is similar to a left outer join.

These operators are good for these scenarios, but if we need to find only the common values of the datasets, we will need to use some filter logic.

Getting ready

We will use an already merged set of data originating from two different universes—Customer and Sales data—merging the City dimension with the Number of Customers and Sales Revenue measures.

How to do it...

If we look closely...