Page 1 of 1
Break down values from consolitation element
Posted: Wed Jun 18, 2014 4:26 pm
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

).
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
Re: Break down values from consolitation element
Posted: Wed Jun 18, 2014 4:41 pm
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).
Re: Break down values from consolitation element
Posted: Wed Jun 18, 2014 4:47 pm
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.
Re: Break down values from consolitation element
Posted: Wed Jun 18, 2014 5:25 pm
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
Re: Break down values from consolitation element
Posted: Mon Jun 23, 2014 2:43 pm
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.
Re: Break down values from consolitation element
Posted: Fri Jul 18, 2014 10:19 am
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,
Re: Break down values from consolitation element
Posted: Fri Jul 18, 2014 4:49 pm
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.
Re: Break down values from consolitation element
Posted: Mon Jul 21, 2014 10:45 am
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
Re: Break down values from consolitation element
Posted: Mon Jul 21, 2014 1:59 pm
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
Re: Break down values from consolitation element
Posted: Tue Jul 22, 2014 9:57 am
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