I have a simple mapping cube to map dimension elements when integrating data from a very granular system to a more consolidated legacy reporting system.
My mapping cube [MyMapCube] has two dimensions [MyGranularDim] & [Measure] which has a single string element called "Note". This cube will map [MyGranularDim] elements to [MyConsolDim] elements as shown below.
MyGranularDim | MyConsolDim |
GA | CA |
GB | CA |
GC | CB |
SkipCheck;
Code: Select all
[Measure:'Note', '}PickList':'Value'] = s:
'Subset:MyConsolDim:}MappingSubset'
;
Many thanks.