If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

feeding all elements from a single source.

Started by Vijay2345, 25 Oct 2011 08:47:51 AM

Previous topic - Next topic

Vijay2345

Hi Guys,

I have a Sales cube having the following dimensions
1.Sales Facility
2.Year
3.Month
4.Market Segment
5.Product line
6.Market
7.Item Sales Group
8.Scenario
9.Sales Measures

I am allowing the user to enter values on certain intersection , and then I am using these values to calculate the entire cube.

['No Cust Class','No Product Line','None Market','No Item Sales Group','Budgeted','Amount']=STET;   


The user enters a total amount at the above specified cells and this value is used across all the elements.


['Budgeted','Amount']=N:['No Cust Class','No Product Line','None Market','No Item Sales Group','Budgeted','Amount'];


My problem is writing feeders for the above rule


FEEDERS;
['No Cust Class','No Product Line','None Market','No Item Sales Group','Budgeted','Amount']=>
DB('Sales Budgeting',!Sales Facility,!Year,!Months,!Market Segment,!Product Line,!Market,!Item Sales Group,!'Budgeted','Amount');



Is this the right way to deal with the above rules in writing feeders, Request some one to please help me on this.

MichelZ

Hi Vijay,

What do you mean by "then I am using these values to calculate the entire cube."?
What your rule is doing is copying a single leaf cell value to potientally millions of other leaf cells. Why would you wanna do this?

The feeder you wrote will only feed the source area itself, so is of no use. Please note that Skipcheck&Feeders only make sense in sparse cubes - they way you want to populate the budgeted amount in the cube will result in an extremely dense cube...

But again, you really need to rethink what you're trying to establish.

Michel