Hi Folks,
I have this scenario where I need to set conditions in the interface determination.
First condition is that, if ACC_LIMIT is present in any <ReferenceTypeCodedOther>, then apply mapping01.
Second condition is, if ACC_LIMIT is NOT present in any <ReferenceTypeCodedOther>, then apply mapping02.
<ListOfReferenceCoded>
<ReferenceCoded>
<ReferenceTypeCodedOther>ACC_01</ReferenceTypeCodedOther>
</ReferenceCoded>
<ReferenceCoded>
<ReferenceTypeCodedOther>ACC_02</ReferenceTypeCodedOther>
</ReferenceCoded>
<ReferenceCoded>
<ReferenceTypeCodedOther>ACC_LIMIT</ReferenceTypeCodedOther>
</ReferenceCoded>
</ListOfReferenceCoded>
I have tried using the ~ (Contains pattern) for the first condition though, but I don't think that it is applicable for the second condition.
Please your advise. Thank you!
Regards,
Lex