Search found 9 matches

by tm1starter
Fri Feb 04, 2011 10:15 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Feeding from an alias
Replies: 7
Views: 5545

Re: Feeding from an alias

Thank you, it works now. Haven't tried this one because I thought ATTRS wouldn't get me the alias, but it does! :D
by tm1starter
Thu Feb 03, 2011 11:12 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Feeding from an alias
Replies: 7
Views: 5545

Feeding from an alias

Hello all, 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 nu...
by tm1starter
Wed Jan 12, 2011 8:42 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Best way to transfer values between mapped items with rules
Replies: 5
Views: 4463

Re: Best way to transfer values between mapped items with ru

I think I Have the solution for the feeder; Create a consolidation in the measure dim, 'TransferedValues' For option 2 ['TransferedValues' ] => DB('Result', !Scenario, !Period, !Measure); The downside is that you have to maintain both the consolidation and the alias, but I see no other options (with...
by tm1starter
Wed Jan 12, 2011 8:28 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Best way to transfer values between mapped items with rules
Replies: 5
Views: 4463

Re: Best way to transfer values between mapped items with ru

Marcus, the example is a simplification of the model there are more cubes in the model, more dims in the cubes, and more measures in the measure dim which are not mapped to accounts.
by tm1starter
Wed Jan 12, 2011 7:59 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Best way to transfer values between mapped items with rules
Replies: 5
Views: 4463

Re: Best way to transfer values between mapped items with ru

One account maps only one measure and the otherway round. So I have two options left; 1 Make an attribute in the account dim named source, which will give this rule; []=DB('Employee', !Scenario, !Period, ATTRS('Account', !Account, 'Source'), 'All employees'); 2 Make a alias('TargetAccount') in the m...
by tm1starter
Tue Jan 11, 2011 2:42 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Best way to transfer values between mapped items with rules
Replies: 5
Views: 4463

Best way to transfer values between mapped items with rules

Hello all I've two cubes; Employee -Scenario -Period -Measure -Employee Result -Scenario -Period -Account And with the next mapping table between Measures and Accounts Measure1 > Account1 Measure2 > Account2 Measure3 > Account3 I want to get the values for the account with a rule; You could do this ...
by tm1starter
Fri Jan 07, 2011 2:18 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Transfer data from attributes to cube with rules
Replies: 4
Views: 3276

Re: Transfer data from attributes to cube with rules

Indeed this works, Thnx!

I'm a bit shamed, about this error :oops:
by tm1starter
Fri Jan 07, 2011 12:34 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Transfer data from attributes to cube with rules
Replies: 4
Views: 3276

Re: Transfer data from attributes to cube with rules

It is not only the I type, I and E are used both. I don not also want this one; ['FTE', 'I'] = IF(DB('}ElementAttributes_Employee', !Employee, 'EmployeeType')='I' DB('}ElementAttributes_Employee', !Employee, 'FTE'), CONTINUE); ['FTE', 'E'] = IF(DB('}ElementAttributes_Employee', !Employee, 'EmployeeT...
by tm1starter
Fri Jan 07, 2011 12:09 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Transfer data from attributes to cube with rules
Replies: 4
Views: 3276

Transfer data from attributes to cube with rules

Hello all, I have the next problem; I have a employee cube with the next dims (simplified); - Employee - EmployeeType (elements I and E) - Measure (element FTE) - Period and the Employee dim has the next attributes; - FTE (Value between 0 and 1) - EmployeeType (Value I or E) With a rule I want to fi...