
Hi Guys,
May I just ask regarding feeders.
I have cubes with almost the same structure as of cubes below:
A. REPORT Cube
-Version
-Month
-Report Account (consists Expenses element)
-Measure (consists December Closing element)
B. SOURCE Cube
-Version
-Year (consists ten initial year elements)
-Month
-Source Account (consists 1111 and 2222 accounts as Expenses accounts)
-Measure (consists Actual element)
C. PICKLIST Cube
-Year Selection (consists Year element)
-Measure (consists Select element)
In the REPORT cube, the December Closing measure pertains to the Year selected in PICKLIST cube minus one.
So in my rules for REPORT cube to get the December Closing Expenses for Year 2012, rules should be
['Expenses','December Closing']=N:
DB('SOURCE Cube',!Version,DB('PICKLIST Cube','Year','Select'),'Dec','1111','Actual')+
DB('SOURCE Cube',!Version,DB('PICKLIST Cube','Year','Select'),'Dec','2222','Actual');
My question is, how will I feed ['Expenses','December Closing'] in a way that is not overfed?
What I put in the Feeders in SOURCE Cube rule file is this
Feeders;
['1111','Actual']=>DB('REPORT Cube',!Version,!Month,'Expenses','December Closing');
['2222','Actual']=>DB('REPORT Cube',!Version,!Month,'Expenses','December Closing');
Isn't it gonna over feed, I'm thinking all the year elements will feed ['Expenses','December Closing']?
Is there a way in which my feeders will just identify what Year will feed the ['Expenses','December Closing'] based on what is selected in the PICKLIST cube?
Please help.

Thanks,
Bunch