Subset contains duplicate consolidation member

Post Reply
tm1dgw
Posts: 3
Joined: Wed Jun 27, 2012 2:05 pm
OLAP Product: TM1
Version: 10.1.1
Excel Version: 2007

Subset contains duplicate consolidation member

Post by tm1dgw »

I'm new to TM1, and am having an odd problem that my co-workers have never seen. When I create a subset for one of my dimensions, a consolidation element is showing up in the wrong location IN ADDITION TO being displayed in the correct location. I've tried recreating the dimension (from a process) and subset several times, but the behavior keeps repeating in the same way. Does anyone have any suggestions to prevent this from happening?
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: Subset contains duplicate consolidation member

Post by tomok »

How are you creating the subset, TI or through the subset editor? If it's subset editor then just delete the element from the "wrong" location (whatever that means) and the re-save. If you are doing it via TI then how are you looping through to do the SubsetElementInsert? Perhaps your logic is bad.
Tom O'Kelley - Manager Finance Systems
American Tower
http://www.onlinecourtreservations.com/
tm1dgw
Posts: 3
Joined: Wed Jun 27, 2012 2:05 pm
OLAP Product: TM1
Version: 10.1.1
Excel Version: 2007

Re: Subset contains duplicate consolidation member

Post by tm1dgw »

I'm using a process, and only inserting the top consolidation level ('Products') plus its 3 colsolidation level children. After the subset is created, the element 'Core' shows up in the proper place AND with the leaf-level elements of 'Non-Core'.

#-------------- SET PARAMETER VALUES --------------------------
pDim = 'GprDimProducts';
pSubset = 'Top Levels';

#------------- DELETE ALL SUBSET ELEMENTS ------------------------------

SubsetDeleteAllElements ( pDim,pSubset ) ;

#--------------- INSERT SUBSET ELEMENTS ----------------------------
SubsetElementInsert(pDim, pSubset, 'Products', 1);
SubsetElementInsert(pDim, pSubset, 'L1 - ( Blank )', 2);
SubsetElementInsert(pDim, pSubset, 'Core', 3);
SubsetElementInsert(pDim, pSubset, 'Non-Core', 4);
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: Subset contains duplicate consolidation member

Post by tomok »

I'm not following you as I cannot tell from your explanation exactly what "the proper place" means. You should probably post a screen shot of what you are talking about.
Tom O'Kelley - Manager Finance Systems
American Tower
http://www.onlinecourtreservations.com/
tm1dgw
Posts: 3
Joined: Wed Jun 27, 2012 2:05 pm
OLAP Product: TM1
Version: 10.1.1
Excel Version: 2007

Re: Subset contains duplicate consolidation member

Post by tm1dgw »

We discovered that the problem was in the data used to build the dimension. There was a leaf-level element data item that contained the same value as a consolidation element data item.

Thanks for trying to help!
Post Reply