For instance, IF ZipCode in (02109,02129,02108,02118,etc…)
I checked the document and the syntax in the If statement should be the following:
IF (ZipCode == =A||ZipCode == =B)
However, because the message is in XML the field name is very long, see example below:
soap:Envelope.soap:Body.GetCasesInfoResponse.GetCasesInfoResult.Facility.Patients.0(%g1).Patient.FacesheetData.SiteDetailReply.PID.Address.&Zip
and I’m supposed to add a very long list of zip codes to the condition.
Is there a better way to write the syntax of this condition?
something like for instance:
ZipCode == =(02109,02129,02108,02118,etc…)