Kashinath
6 months agoNew Contributor II
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 ...
- 6 months ago
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 🙂