TI: Update subset after cube load

Post Reply
kudzis
Posts: 42
Joined: Wed Nov 10, 2010 12:35 pm
OLAP Product: Cognos 8 BI
Version: 9.5.1
Excel Version: Excel 2007

TI: Update subset after cube load

Post by kudzis »

Hello,

I need to update a subset of specific dimension when I finish loading data into cube (using TI process). I want this subset to include all N level elements from this dimension. How can I do that?
User avatar
qml
MVP
Posts: 1098
Joined: Mon Feb 01, 2010 1:01 pm
OLAP Product: TM1 / Planning Analytics
Version: 2.0.9 and all previous
Excel Version: 2007 - 2016
Location: London, UK, Europe

Re: TI: Update subset after cube load

Post by qml »

The best approach is to create a Dynamic Subset with the following MDX code

Code: Select all

{TM1FILTERBYLEVEL( {TM1SUBSETALL( [Dimension] )}, 0)}
This subset will not need any maintenance, it will always be automatically up to date.
Kamil Arendt
kudzis
Posts: 42
Joined: Wed Nov 10, 2010 12:35 pm
OLAP Product: Cognos 8 BI
Version: 9.5.1
Excel Version: Excel 2007

Re: TI: Update subset after cube load

Post by kudzis »

qml wrote:The best approach is to create a Dynamic Subset with the following MDX code

Code: Select all

{TM1FILTERBYLEVEL( {TM1SUBSETALL( [Dimension] )}, 0)}
This subset will not need any maintenance, it will always be automatically up to date.
I haven't fought of that. Thanks!
Post Reply