using TM1 v9.5.2 I have a requirement to use maximum of children problem for "reclaim_defect" dimension. I have been solving this problem for months now and I got to this solution from help on this forum thread How to consolidate dimension with maximum of children?.
Now I am opening a new problem (one thread per problem). I have a performance problem. Writting bellow code in simple sample works without a problem, but in production cube having the SAME LOGIC but more dimensions (10) and more measures (17) adding this formula to cube is producing horible performances - to calculate the cube it takes for hours.
Code: Select all
['QUANTITY'] = C:
if(
ELLEV('reclaim_buyer', !reclaim_buyer)= 0 &
ELLEV('reclaim_product', !reclaim_product)=0
,
ConsolidatedMax(0,'', !reclaim_buyer, !reclaim_defect, 'QUANTITY',!reclaim_product)
,
STET
)
;
In any other cube I have on production I always use SKIPCHECK and then write feeders to dramatically speed-up performance. I have tried to add SKIPCKECK definition (without feeders) and performance is dramatically better it takes a second to display a result, but it produces incorrect values. So most probably I need to write a feeders, but don't know how. Any idea how to write a feeder?
Regards