Hi All,
I am trying to load the cost center hierarchy from BW to BPC using the IMPORT_IOBJ_HIER package but my BW hierarchy is setup in such a way that it does not have a common prefix for all nodes. E.g. the hierarchy name is C001CC and the nodes underneath it are C00101, C00111, C00112 etc. I have been following the white paper by Jeffrey Holdeman for loading master data but for my scenario how can i change the transformation file to accept multiple nodes? The guide says to use an IF statement to parse the controlling area and node prefix as: NODENAME=*IF(NODENAME(1:6)=*STR(SAP1EX) then NODENAME; NODENAME(5:12))
I have tried to (1) use multiple transformation files for each node separately so as to 1st load node C00101 then C00111, but subsequent runs remove the previously loaded hierarchies and
(2) modify the IF statement to something like *IF(NODENAME(1:6)=*STR(C00101) then NODENAME; IF(NODENAME(1:6)=*STR(C00111) then NODENAME; NODENAME(5:12))) but then the transformation does not validate due to errors in IF statement.
Has anybody worked on this scenario?