We have a situation where the value in the source system (Gender) will need to be mapped to a different value in the destination system.
Example Value Lists
- Source
- M
- F
- Destination
- Male
- Female
This is a very useful feature and combined with the database utilization we have decided to implement this for all the list values. Our issue arises when we attempt to utilize this for value lists which have multiple source values to a single destination value.
Example Complex Value list
- Source
- Adopt Mother
- Adopt Father
- Legal Guardian
- Step Mother
- Step Father
- Destination
- Adopted Mother
- Adopted Mother
- Other
The system error's with unique key constraints preventing us from mapping the legal Guardian/Step Mother and Step Father to "Other" in the destination message. All examples I've found refer to simple value lists and don't seem to refer to the complex value example mentioned above. Does anyone know if this can be implemented with cross-reference or is this something that we have to create some customized code for.