on ‎2018 Aug 01 9:10 AM
Hi
I am loading Master data hierarchy for HR Org Unit ParentH1. I am using Import Master data Hierarchy from InfoObj. But while loading the data I am getting error as "Member 20002003 does not exist".
As my BW Org Unit data is having member id as 20002003" and I uploaded master data by using pre fix to org unit data as OU_20002003. Hence while loading the data for hierarchy the system is not able to determine OU_20002003 for updating PARENTH1. It is searching for Member id 20002003 which is not available in BPC org unit data.
I tried giving conversion for the transformation file while loading data, but it is not recognizing. Can anybody have suggestions on the load on what I should do on the conversion file?
See below my transformaton file:

first conversion file:

Second conversion for the node;

Error message:

Records rejected

Master data from the dimension:

Your help in this regard would be appreciated...
Thanks,
Request clarification before answering.
Another option - without separate conversion sheet (to skip empty parent) is to use in mapping the line like:
PARENT=*IF(PARENT=*STR() THEN PARENT; *STR(OU_)+PARENT)
Both ways will do the same.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please accept the correct answer!
https://www.sap.com/community/about/rules-of-engagement.html
Rule 8
Hi,
I profusely apologize for my conduct.
Issue has been resolved. Thank you very for your assistance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Easy:
In the conversion file for PARENT
add single line:
OU_ *skip
to skip empty parent
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why do you need conversion to append prefix???
Use mapping in transformation file:
NODENAME=*STR(OU_)+NODENAME
HIER_NAME=HIER_NAME
PARENT=*STR(OU_)+PARENT
ORDER=ORDER
P.S. use conversion only for HIER_NAME
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 41 | |
| 4 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.