I have a problem with a feeder, see below;
(Simplified example)
I have cube 'Employee' with dimensions;
Scenario
Period
EmployeeMeasure
Employee
And the cube 'Result' with dimensions;
Scenario
Period
Account
I have a alias in 'EmployeeMeasure' called 'TargetAccount' which holds account numbers from the Account dimension. To get the values from the employee cube to the result cube, I have the next rule;
Code: Select all
[]=N:IF(DIMIX('EmployeeMeasure', !Account)<>0,
DB('Employee', !Scenario, !Period, !Account, 'All employees'),
CONTINUE);
In the cube 'Employee' for example I have the feeder;
Code: Select all
['411'] => DB('Result', !Scenario, !Period, !CostCenter, '411');
I want this rule also to work for the other measure with a target account. Therefore i created a C-element 'TransferedValues' which holds all the measures that have a target account. So I created this rule;
Code: Select all
['TransferedValues'] => DB('Result', !Scenario, !Period, !CostCenter, !EmployeeMeasure);
I've also tested this one;
Code: Select all
['411'] => DB('Result', !Scenario, !Period, !CostCenter, !EmployeeMeasure);
So, I think I'm missing something about feeding and aliases. I've seen some posts on this issue but they are not clear to me (http://forums.olapforums.com/viewtopic.php?f=3&t=681).
Hope someone can help me, thanks in advance!