Break down values from consolitation element

Post Reply
jviegas@bi4all.pt
Posts: 67
Joined: Fri Oct 14, 2011 3:15 pm
OLAP Product: TM1
Version: 10.2.2
Excel Version: 13
Location: Portugal

Break down values from consolitation element

Post by jviegas@bi4all.pt »

Hi,

I'm facing a chalenge in a new project that I can't find a solution (at least at the moment :D ).

The customer wants to be able to put same values either on the leaf item of a dimension or consolidation item of the same dimension (in this case it show break down the values - I would say like Cognos Planning does).

The problem in some tests I'm doing, this can't be done even on excel perspectives saying "Cell cube is not updatable".

Is there anyone that already faced this and could resolve it ?

Thank you in advance,

Jorge Viegas
tomok
MVP
Posts: 2836
Joined: Tue Feb 16, 2010 2:39 pm
OLAP Product: TM1, Palo
Version: Beginning of time thru 10.2
Excel Version: 2003-2007-2010-2013
Location: Atlanta, GA
Contact:

Re: Break down values from consolitation element

Post by tomok »

That functionality in TM1 is called data spreading versus data input. The difference is in data spreading you can't just select the cell and type the number, you have to tell TM1 to spread via the context menu (accessed by right-clicking on the mouse).
Tom O'Kelley - Manager Finance Systems
American Tower
http://www.onlinecourtreservations.com/
jviegas@bi4all.pt
Posts: 67
Joined: Fri Oct 14, 2011 3:15 pm
OLAP Product: TM1
Version: 10.2.2
Excel Version: 13
Location: Portugal

Re: Break down values from consolitation element

Post by jviegas@bi4all.pt »

Hi Tomok

Thanks for the feedback.

I know that spreading is a possibility but doesn't seem very user frendly because at the moment they use a portal where they can just input data at any level. Although I don't know yet if I'm going to be put on the spot with this, I was trying to think on a "plan b" if they demanded a similar behavior in the tm1 model.
declanr
MVP
Posts: 1831
Joined: Mon Dec 05, 2011 11:51 am
OLAP Product: Cognos TM1
Version: PA2.0 and most of the old ones
Excel Version: All of em
Location: Manchester, United Kingdom
Contact:

Re: Break down values from consolitation element

Post by declanr »

If you get users away from perspectives (which I tend to try for most people who are doing basic input as opposed to data analysts) then the web side of things can know inherently to spread.

Or create an input cube where all elements are nodal and a ti sorts out the spreading... not particularly user friendly unless well hidden in a sexy web interface where the user doesn't even know they are executing TIs
Declan Rodger
dharav
Regular Participant
Posts: 193
Joined: Wed Apr 02, 2014 6:43 pm
OLAP Product: TM1
Version: 10.2
Excel Version: 2010

Re: Break down values from consolitation element

Post by dharav »

Hello

In perspective, One has to use p ahead of each input. E.G: P500 or P1500. '"P'" stands for proportional spread.

TM1 contributor is ideal interface in this scenario to input data where you can just write the input number or paste the number.

@jviegas: Did you find any difference in the performance while entering data at consolidation versus entering data at leaf level? It seems the entering data at consolidation level would take more time as it has to break down the numbers to leaf elements.
jviegas@bi4all.pt
Posts: 67
Joined: Fri Oct 14, 2011 3:15 pm
OLAP Product: TM1
Version: 10.2.2
Excel Version: 13
Location: Portugal

Re: Break down values from consolitation element

Post by jviegas@bi4all.pt »

Hi dharav ,

Sorry the delay on the answer.

Placing data in the consolidation will take a bit long than to place data on leaf items because it make a weight distribution for all the decendents. Yet in this case I will need to do it because its a requirement for the app.

Thanks,
dharav
Regular Participant
Posts: 193
Joined: Wed Apr 02, 2014 6:43 pm
OLAP Product: TM1
Version: 10.2
Excel Version: 2010

Re: Break down values from consolitation element

Post by dharav »

@jviegas: In that case make similar cube with only those elements where you want to enter data (consolidated element in other dim would become leaf element here). User can do in put in this cube and than with TI you can spread back data to the main cube. You can assign button to user to run that ti. It is faster, we had implemented same solution.
jviegas@bi4all.pt
Posts: 67
Joined: Fri Oct 14, 2011 3:15 pm
OLAP Product: TM1
Version: 10.2.2
Excel Version: 13
Location: Portugal

Re: Break down values from consolitation element

Post by jviegas@bi4all.pt »

dharav wrote:@jviegas: In that case make similar cube with only those elements where you want to enter data (consolidated element in other dim would become leaf element here). User can do in put in this cube and than with TI you can spread back data to the main cube. You can assign button to user to run that ti. It is faster, we had implemented same solution.
Hi dharav,

Sorry the question (I actually never did this with a TI) if I "link" data from the leaf element in Cube1 to a consolidate element in Cube2 will TM1 spread the data or should I do a loop in the data tab of the TI process.

If the spread is automatically done I admit it would solve this and actually spare me some time at this stage :)

Thanks for the help and the idea,

Kr,

Jorge
dharav
Regular Participant
Posts: 193
Joined: Wed Apr 02, 2014 6:43 pm
OLAP Product: TM1
Version: 10.2
Excel Version: 2010

Re: Break down values from consolitation element

Post by dharav »

Jeorge

1) Use Cell proportional spread TI function in data tab to spread data from consolidation

2) If there is no value in the Detail cube where you would spread data than you have to create two process.

>>>> First, You have to distribute 1 where there is o.
IF(CELLGETN()=0);
CellputN(1,,,);
Endif:

>>>>Second , the above cell proportional spread process (one liner)

>>>Third, You have to distribute where there is 1 with 0.
IF(CELLGETN()=1);
CellputN(0,,,);
Endif:


The first and third is the same process where you apply starting parameter vale and ending parameter value. Now you can replace 1 and 0 respectively.

Hope it would help.

Thanks

Dharav
jviegas@bi4all.pt
Posts: 67
Joined: Fri Oct 14, 2011 3:15 pm
OLAP Product: TM1
Version: 10.2.2
Excel Version: 13
Location: Portugal

Re: Break down values from consolitation element

Post by jviegas@bi4all.pt »

Thanks dharav ,

Going to keep this idea because I would say that in a week or two I will get the global requirements and maybe this will be a way to solve a possible problem in the spreading and the time taken to do it.

Regards,

Jorge Viegas
Post Reply