Feeder assistance

Post Reply
SimonLAylett
Posts: 12
Joined: Thu Sep 13, 2012 1:56 pm
OLAP Product: TM1
Version: 9.5.2
Excel Version: 2007

Feeder assistance

Post by SimonLAylett »

Guys,

Bit of help with feeders if possible....

I'm using a rule which roles forward rates each month (in a split time dimension). It puts last month's rate in this month unless something else is entered this month.
It uses an input and output nominal, rolled up into a reported nominal, with Input weighted at zero.

See below for example code....

Code: Select all

###
['Expected Return On Capital Output']=	N:IF(
						DB('Reporting_Scheme',!Version,!Accident Year,!Underwriting Year,!LineOfBusiness,!Company,!Cover Type,!Product,!Scheme,'Expected Return On Capital Input',!Month,!Year)<>0,
						DB('Reporting_Scheme',!Version,!Accident Year,!Underwriting Year,!LineOfBusiness,!Company,!Cover Type,!Product,!Scheme,'Expected Return On Capital Input',!Month,!Year)
					,
						DB('Reporting_Scheme',!Version,!Accident Year,!Underwriting Year,!LineOfBusiness,!Company,!Cover Type,!Product,!Scheme,'Expected Return On Capital Output',ATTRS('Month',!Month,'Prior Month'),!Year) 
					);
###
My Feeder currently is...

Code: Select all

['AA_Adj']=>	DB('Reporting_Scheme',!Version,!Accident Year,!Underwriting Year,!LineOfBusiness,!Company,!Cover Type,!Product,!Scheme,!Nominal,ATTRS('Month',!Month,'Next Month'));
Whereby 'AA_Adj' is the 'Version' where the rates are input.

I'm getting a fed value in the cube for the direct month in the reported nominal, so I assume this feeder is half working, but half is no good!

Any help would be great,

Cheers
Version - 9.5.2
O/S - Windows XP Professional 2002 SP3
Excel 2007
Beginner!
rmackenzie
MVP
Posts: 733
Joined: Wed May 14, 2008 11:06 pm

Re: Feeder assistance

Post by rmackenzie »

A couple of things that spring to mind:

* The left-hand side of the rule is saying calculate 'Expected Return On Capital Output' but you are feeding from 'AA_Adj' (as a version). Basically you are feeding from a different slice than you are calculating which is going to be confusing. Also, do you really need this version when the 'input nominal' is handling that for you?

* I would have expected the right hand side of the rule to be looking at the AA_Adj version if that's where you expect the input to be. And, for the feeder to use that cube area:

Code: Select all

['AA_Adj',  'Expected Return On Capital Output'] =>...
* Your feeder omits the !Year (last argument in the DB()) from the target.

* You should make sure that your attributes are correctly set-up as well for 'Prior Month' and 'Next Month' - do they definitely contain the correct values?

HTH
Robin Mackenzie
Post Reply