CHECK FEEDERS;

Post Reply
appleglaze28
Regular Participant
Posts: 269
Joined: Tue Apr 21, 2009 3:43 am
OLAP Product: Cognos TM1, Planning
Version: 9.1 SP3 9.4 MR1 FP1 9.5
Excel Version: 2003

CHECK FEEDERS;

Post by appleglaze28 »

How is the check Feeders checked to determine what is not being fed? Cause I'm not sure what I'm not feeding right.

Code: Select all

This rule is for retrieving data from another cube and doing further proportional breakdown - worksheet
['Adjusted Unit Price']=N:(((['TOTAL COST']\['TOTAL ITEM NUMBER','TOTAL COST'])*DB('general_so_setting',!base_sales_personnel,!base_so_number,'Total Selling Price'))\['Quantity']);	

Code: Select all

This is the rule for the averaging of the value from a cube whose value is taken from another cube - worksheet:
['>>>Adjusted Unit Price Hold Value']=N:['Adjusted Unit Price'];
['>>>Adjusted Unit Price Count']=N: IF(['Adjusted Unit Price']<>0,1,0);

Code: Select all

This is feeders in worksheet cube
FEEDERS;
['>>>Adjusted Unit Price Hold Value']=>['Adjusted Unit Price'];
['>>>Adjusted Unit Price Count']=>['Adjusted Unit Price'];
['Adjusted Unit Price']=>['TOTAL SELLING PRICE'];
['Adjusted Unit Price']=>['>>>Adjusted Unit Price Hold Value'],['>>>Adjusted Unit Price Count'];

This is feeders in general_so_setting
FEEDERS; 
['Total Selling Price']=>DB('worksheet','TOTAL CUSTOMERS','TOTAL','TOTAL ITEM NUMBER',!base_sales_personnel,!base_so_number,'Quantity');	
Somebody please help me out...I keep knocking on my brain to figure out where I went wrong, or missed out.

Thanks in advance.
Attachments
worksheet1.png
worksheet1.png (65.85 KiB) Viewed 1876 times
worksheet.png
worksheet.png (127 KiB) Viewed 1928 times
Last edited by appleglaze28 on Fri Feb 19, 2010 12:52 am, edited 1 time in total.
kpk
MVP
Posts: 214
Joined: Tue Nov 11, 2008 11:57 pm
OLAP Product: TM1, CX
Version: TM1 7x 8x 9x 10x CX 9.5 10.1
Excel Version: XP 2003 2007 2010
Location: Hungary

Re: CHECK FEEDERS;

Post by kpk »

Hi,

I do not really understand your business logic but the following 2 lines are strange:
['>>>Adjusted Unit Price Hold Value']=N:['Adjusted Unit Price'];
['>>>Adjusted Unit Price Hold Value']=>['Adjusted Unit Price'];
If '>>>Adjusted Unit Price Hold Value' depends on the 'Adjusted Unit Price' element then the feeder should be:
['Adjusted Unit Price']=>['>>>Adjusted Unit Price Hold Value'];

On the other hand it seems to me that most of your "Price" measures depends on the Quantity so probably it would be better to feed them from that measure:
e.g.: ['Quantity']=>['Adjusted Unit Price'],['>>>Adjusted Unit Price Hold Value'],['>>>Adjusted Unit Price Count'];

Regards,

Peter
Best Regards,
Peter
Post Reply