Hello everyone,
I need to perform a filter expression in OAC DV like this: attribute LIKE '%' || (list of values) || '%'.
List of values comes from a parameter used as dashboard filter.
Looking at the logical query behind it, it seems that if I select multiple values in the dashboard filter, the query has been interpreted as follows:
- attribute LIKE '%' ||('value1', 'value2', ...)|| '%'
Obviously, it is semantically incorrect and it does not work. Is there a way to make system interpret the filter expression as:
- attribute LIKE '%'||'value1'||'%' OR attribute LIKE '%'||'value2'||'%' OR ... ?
The number of selected values in the dashboard filter can change so i cannot write the query myself with a fixed number of OR operators.