Hi @all,
we have a shorttext-field "Parameterbezeichnung", which could contain values like "N.17", "B.20", "S.19" and so on. It could also contain combinations of these values, separated by commata. So now we have queries which are filtering over this field, and it works as long as the filtervalue isnt something with "S.". So a querydefinition like
(field["Parameterbezeichnung"] contains "B.20")
is giving me all items where this field contains "B.20", but no item with "N.20" or "B.19" in this field. But the same query with the definition
(field["Parameterbezeichnung"] contains "S.19")
is giving me all items with ".19", so its giving "B.19", "S.19" and "N.19". So whats the matter with this "S."? Is this some kind of placeholder for SQL-statements in the background? We're using Integrity 10.4 with Oracle 11
Thanks, Jens