I am using a condition node to filter messages based on PV1-3 (patient class). I am wondering if there is more simple way to allow only 2 possible values in this field through.
Currently I am trying to use a table and return a 'Y' from column 2 if the value exists, then update a var to return boolean for the condition node.
I am wondering if there is a way to use something like "IN" or this:
if (StringUtils.equalsIgnoreCase(patientclass , ('this' or 'this1')) { return true;}
Thanks!