Rules based Values not showing in EV - Feeder Problem?
Posted: Wed Jun 03, 2009 11:30 pm
Hi Guys,
I have created a new cube in TM1 (Inventory Cube). This includes all Inventory movements. However from the movements I have created a collection of rules to determine the Stock on Hand for a particular year, month, day combination. This works perfectly in Perspectives. However in EV this field shows up as blank. But the funny thing is that when I change to Data Entry mode in EV they all appear!
Is this by any chance a problem with my feeders? If it is a problem with my feeders, wouldn't this mean that the values would not be showing in Perspectives either?
I have included below my rules and feeder:
Could somebody please explain why SOH - Balance shows figures in Perspectives, but not in EV?
Please let me know if I can provide any other information to help.
I have created a new cube in TM1 (Inventory Cube). This includes all Inventory movements. However from the movements I have created a collection of rules to determine the Stock on Hand for a particular year, month, day combination. This works perfectly in Perspectives. However in EV this field shows up as blank. But the funny thing is that when I change to Data Entry mode in EV they all appear!
Is this by any chance a problem with my feeders? If it is a problem with my feeders, wouldn't this mean that the values would not be showing in Perspectives either?
I have included below my rules and feeder:
Code: Select all
SKIPCHECK;
['SOH - Balance'] = C: if(!Period @= 'Feb' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00']) +(['SOH - Movement','Jan', 'Full Month']) +(['SOH - Movement','Feb']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Mar' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Feb YTD', 'Full Month'])+(['SOH - Movement','Mar']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Apr' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Q1', 'Full Month'])+(['SOH - Movement','Apr']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'May' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Apr YTD', 'Full Month'])+(['SOH - Movement','May']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Jun' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','May YTD', 'Full Month'])+(['SOH - Movement','Jun']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Jul' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Q2 YTD', 'Full Month'])+(['SOH - Movement','Jul']),CONTINUE);
['SOH - Balance'] = C:if(!Period @= 'Aug' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Jul YTD', 'Full Month'])+(['SOH - Movement','Aug']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Sep' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Aug YTD', 'Full Month'])+(['SOH - Movement','Sep']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Oct' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Q3 YTD', 'Full Month'])+(['SOH - Movement','Oct']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Nov' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Oct YTD', 'Full Month'])+(['SOH - Movement','Nov']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Dec' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Nov YTD', 'Full Month'])+(['SOH - Movement','Dec']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Feb YTD' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Jan', 'Full Month'])+(['SOH - Movement','Feb']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Apr YTD' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Q1', 'Full Month'])+(['SOH - Movement','Apr']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'May YTD' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Apr YTD', 'Full Month'])+(['SOH - Movement','May']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Jul YTD' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Q2 YTD', 'Full Month'])+(['SOH - Movement','Jul']),CONTINUE);
['SOH - Balance'] = C:if(!Period @= 'Aug YTD' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Jul YTD', 'Full Month'])+(['SOH - Movement','Aug']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Oct YTD' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Q3 YTD', 'Full Month'])+(['SOH - Movement','Oct']),CONTINUE);
['SOH - Balance'] = C: if(!Period @= 'Nov YTD' & !Measure @= 'SOH - Balance', (['SOH - Movement','Period':'No Month','Day':'00'])+(['SOH - Movement','Oct YTD', 'Full Month'])+(['SOH - Movement','Nov']),CONTINUE);
['SOH - Balance'] = C: (['SOH - Movement','Period':'No Month','Day':'00']) +(['SOH - Movement']);
Feeders;
['SOH - Movement'] =>['SOH - Balance'] ;
Could somebody please explain why SOH - Balance shows figures in Perspectives, but not in EV?
Please let me know if I can provide any other information to help.