Hi Experts,
I have seen multiple threads for data transfer from one model to another. I'm following the same path as described but having an issue in moving the data. Can you help me. My issue is described below.
I have 2 Models with 6 dimensions each (4 mandatory dimensions are same E,C, T, A)
1) Model 1
- Products (Same)
- Cust_Group
2) Model 2
- Products (Same)
- Cost_Unit
Assuming the remaining dimensions are common. I want to move data from Model2 to Model1 with the following information. Here I want to move Cost_Unit total of model 2 to Model 1. I am confused how data will be divided further by cust_group in destination model? I have designed the following script but its not working.
*XDIM_MEMBERSET COST_UNIT = PACK_MAT
*XDIM_MEMBERSET ACCOUNT = MAT_COST
*DESTINATION_APP = ANNUAL_PLAN
*SKIP_DIM = COST_UNIT
*ADD_DIM CUST_GROUP = 0101
*WHEN COST_UNIT
*IS "PACK_MAT"
*REC(EXPRESSION=%VALUE%)
*ENDWHEN
*COMMIT
Regards,