Transfer data between cubes using process
Posted: Mon Nov 24, 2014 3:53 am
Hello all,
I'm relatively new to TI processes and I am hoping to get some help on putting data between two cubes with different elements using an attribute as a lookup. For example:
Cube A Element 123
Cube B Element 456, but has attribute details as 123.
Put data in element 123 into 456 using the attribute as a lookup.
I currently have the following code and I think it has something to do with my CellPutN formula where I need to specify the attribute lookup?
Thanks you all.
Admin Note: Moved to the correct forum. This does not belong in General.
I'm relatively new to TI processes and I am hoping to get some help on putting data between two cubes with different elements using an attribute as a lookup. For example:
Cube A Element 123
Cube B Element 456, but has attribute details as 123.
Put data in element 123 into 456 using the attribute as a lookup.
I currently have the following code and I think it has something to do with my CellPutN formula where I need to specify the attribute lookup?
Code: Select all
nValue = CellGetN ( pCubeTarget, pVersionTarget, vYear, vPeriod, vProfitCentre, vAssetClass, vForecastItem, pMeasure);
nAccValue = nValue + vValue;
CellPutN ( nAccValue, pCubeTarget, pVersionTarget, vYear, vPeriod, vProfitCentre, vAssetClass, vForecastItem, pMeasure);
Admin Note: Moved to the correct forum. This does not belong in General.