I have customer master data .., in which company code field is tuple (it contains mare than one data). Now I want to use a validation in which if Company Code field has 1234 ( along with other values ) . i have a validation which I used
If(CompanyCode.code = "1234" , TRUE,FALSE)
But the problem is that when it encounters multivalues ( even if 1234 is present ), the validation fails.
Can anyone gaive avalidation for multivalued fields.