Robin , Tomok ,
Using the term that Robin said, I 'm trying to allocate
overheads (e.g. IT), using the volume of production as driver. I 'm a portuguese speaker, so I need to learn more business terms in english

my fault.
Here is an example of that:
rmackenzie wrote:
He means volume by cost centre where that cost centre is the production (e.g. factory) element, and not the expense cost centre (e.g. IT).
I thought the term cost center concerned only the dimension cost center.
I'll try to give more details.
My production volume is available for Factory , Region , SKU , etc.
In Volume Production cube, I have the value of the volume produced, not a value of the ratio of the volume % relative to the total. This % value i tried to demonstrate in the previous post with the
[ 'Volume' ] / Total Volume DB rule. This is because in this rule I have to deal with some exceptions in relation to overheads , because some groups of cost centers has a different allocation rule, where the ratio is not calculated by the total volume, but a part of him.
Showing the rule I created to illustrate better.
Code: Select all
# Income Statement Lines
# ATL Expenses
[ { '42 ' , '43' } ] = N : (
DB ( 'Production Volume', !Year , !Version, !Month , !Freight , !Channel, !Factory, !Region, !SKU, 'Volume HL' ) \
IF ( DB ( 'map.cost_center ', !cost_center , 'Driver' ) @ = 'SKU',
DB ( 'Production Volume', !Year , !Version, !Month , 'Total Freight', 'Total Channel', 'Total Factory' , 'Total Region' ,
DB ( 'map.cost_center', !cost_center , 'Value Driver' ) ,
'Volume HL'),
DB ('Production Volume', ! Year , !Version, !Month , 'Total Freight', 'Total Channel', 'Total Factory' , 'Total Region' ,
'SKU by Total Brand',
'Volume HL' ) )
*
DB ('Cube Expense', !Year , !Version , !Month , !cost_center , !Income Statement Line , 'Value (R$)' ) ;
So , in the above rule I have an expense of ATL ( Expense Cube ), and this expense must be allocated according to the ratio of volume of production, the conditional indicates what kind of driver I use. In the example I test if the driver is SKU, if so I do the just proportion of the total volume of the brand that the sku belongs.
My dimension has 3 levels,
Total SKU by Brand,
Brand and
SKU, the value of my
Driver Value in this case would be a Brand.
I think this demonstrates what I'm trying to do, but let me know if you need any other information.
Thanks.