Variable Feeder?
Posted: Wed Jun 18, 2014 11:48 pm
Hello,
I have 2 cubes with nearly the same dimensions. 2 of the dimensions in Cube 1 are Year and month. In Cube 2 I have here a Dimension with 2 Special Dates and the }Clients-Dim. I now want to write a rule wich copies all data for the 2 Special Dates and the current user in Cube 2. The Dates are stored as Attributes in the }Clients-Dim. The copy itself is working but the Feeder not. I tried this:
But this is not working. The Leafs in Cube2 are not fed according the Tracer. I tried to insert an ATTRS or DB to read the wanted date in the left side of the Feeder but only get Syntax-Errors.
or
Is this possible what I wanna do?
Thx and regards
I have 2 cubes with nearly the same dimensions. 2 of the dimensions in Cube 1 are Year and month. In Cube 2 I have here a Dimension with 2 Special Dates and the }Clients-Dim. I now want to write a rule wich copies all data for the 2 Special Dates and the current user in Cube 2. The Dates are stored as Attributes in the }Clients-Dim. The copy itself is working but the Feeder not. I tried this:
Code: Select all
[{'e1','e2'},['measure1','measure2','measure3'}] => DB('Cube2',!dim1,TM1USER(),'specialdate',!dim2,!measure);
Code: Select all
[{'e1','e2'},DB('}ElementAttribues_}Clients',TM1USER(),'Date'),['measure1','measure2','measure3'}] => DB('Cube2',!dim1,TM1USER(),'specialdate',!dim2,!measure);
Code: Select all
[{'e1','e2'},ATTRS(}Clients,TM1USER(),'Date'),['measure1','measure2','measure3'}] => DB('Cube2',!dim1,TM1USER(),'specialdate',!dim2,!measure);
Thx and regards