Hi,
I have this validation for SWIFT and XEURO field. XEURO is an indicator for European countries.
If XEURO = 'X' SWIFT is mandatory and must not be null and the rest is optional. But in my validation condition. Still it catches the fail record into the pass/valid table.
Is my code logic/condition wrong? or is it a BODS bug?
SWIFT is mandatory for all European Countries
XEURO | SWIFT | Validation |
---|---|---|
X | ABC | Pass |
X | <null> | Fail |
Null | ABC | Pass |
Null | <null> | Pass |