Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

For Pentaho Anaysis data source, there are 3 types of OLAP data source types [Pentaho Analysis, Pentaho Analysis De-normalized, and Pentaho Analysis (Legacy)].  The difference between them are how the column names are created from the MDX statement and how the data is organized.

Based on the following MDX query using SteelWheels:unmigrated-wiki-markup

Code Block

select NON EMPTY Crossjoin({

...

[Measures

...

].

...

[Quantity

...

]}, Union({

...

[Markets

...

].

...

[All Markets

...

]}, 

...

[Markets

...

].

...

[All Markets

...

].Children)) ON COLUMNS,

...


  NON EMPTY Hierarchize(Union({

...

[Product

...

].

...

[All Products

...

]}, 

...

[Product

...

].

...

[All Products

...

].Children)) ON ROWS

...


from [SteelWheelsSales]

...


JPivot returns it like this:

Image Added

For the Pentaho Analysis datasource aka Banded MDX.  The columns return like this: 
[Product].[All], 
[Product].[Line], 
[Measure].[Quantity]/[Markets].[All Markets],
[Measure].[Quantity]/[Markets].[All Markets].[APAC], 
[Measure].[Quantity]/[Markets].[All Markets].[EMEA], 
[Measure].[Quantity]/[Markets].[All Markets].[Japan], 
[Measure].[Quantity]/[Markets].[All Markets].[NA].

Image Added

For the Pentaho Analysis  (De-Normalize) datasource aka Denormalized MDX.  The columns return like this where it de-normalizes the crosstab data: 
[Product].[All],  
[Product].[Line], 
[Measures].[MeasuresLevel], 
[Markets].[All],
[Markets].[Territory], 
Measure

Image Added

For the Pentaho Analysis (legacy) datasource aka Legacy Banded MDX, this is the old way the columns returned prior to Pentaho Report Designer 3.5 and created so that reports migrated easily to 3.5 and beyond.  The columns return like this:  
Product, 
unmigrated-wiki-markup
{*}Product{1}, *
Quantity/APAC/Markets, 
Quantity/All Markets/Markets, 
Quantity/EMEA/Markets, 
Quantity/Japan/Markets, 

Image Added