Sometimes, when
modeling integrations, we need to map data dynamically depending on
other data. In this blog, we will look at creating
conditional mappings using Oracle
Integration.
Use
case:
Consider this pseudo
code sample of the mapping logic. How can we achieve this in the
mapper UI?
if PER03 == 'TE'
{ Contact.Phone
= PER04}if PER05 == 'TE'
{ Contact.Phone
= PER06}if PER07 == 'TE'
{ Contact.Phone
= PER08}
Solution:
First, enable
“Advanced” mode and open the...