Hi guys,
i am little bit confused about following requirement. Normally is it easy to explain. But in interface determination expression it doesn't work for me.
STATUS | TYPE | TYPE | MAPPING |
NOT A | NOT QQ | NOT QA | A |
A | NOT QQ | NOT QA | B |
NOT A | QA | C | |
A | QA | D |
I got following error message for;
STATUS | TYPE |
B |
Inbound interface found several times (for same sender and receiver) for the outbound interface
My xpath expression was;
(/Status!="A") and (/Type=!"QQ" or /Type=!"QA") EX
(/Status="A") and (/Type=!"QQ" or /Type=!"QA") EX
(/Status!="A") and (/Type="QQ" or /Type="QA") EX
(/Status="A") and (/Type="QQ" or /Type="QA") EX