Mapping Individual members using Data Buffer while copying data.
Hi Community,
I have a rule that is using DataBuffer to copy data from 1 cube to another. The 2 cubes use separate Flow Dimensions . right now I have given in the following way :
Is there any way I can give individual mappings of the base members instead of copying parent data.
For example :Suppose BGBAL and EBAL are base members of F#SF_Movement.
Map F#BGBAL in source Dimension to F#BegBal in Destination
Map #EBAL in Source Dimension to F#EndBal. in Destination
Is such data mapping possible ?.
Thanks for the help.
Hi Kashinath this is possible with the method you are using. However you need to add each base member line individually e.g you need to map two separate DataBufferConvMapItems to your DataBufferConvDimInfo collection. E.g instead of F#SF_Movement.Base replace it with F#BGBAL and F#EBAL as source member filter(s) and replace F#None with F#BegBal for your destination member filter on both lines.
You can do this using dataBufferConvDimInfo.Add() for each DataBufferConvMapItem
Then you use the ConvertDataBuffer api to convert the data buffer from source to target, as desired.
That should resolve your issue. Log the buffer and check results 🙂