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