Data Filters¶
In many scenarios, it is required for a Business Unit to be limited to a specific list of parameter values. This can prevent a Business Unit to access data that belongs to a different Business Unit.
Calculation Parameter Type
Required
Type of parameter to filter. Only enumerable parameter types are available here.Value
Explicitly stating list of allowed values.If you are not sure which separator should be used to separate individual values contact 2Ring support. Wildcard Value
When a Wildcard is provided, the system automatically passes all values that match the wildcard.Character
Description
Example
%
Represents zero or more characters
bl% finds bl, black, blue, and blob
_
Represents a single character
h_t finds hot, hat, and hit
[]
Represents any single character within the brackets
h[oa]t finds hot and hat, but not hit
^
Represents any character not in the brackets
h[^oa]t finds hit, but not hot and hat
-
Represents a range of characters
c[a-b]t finds cat and cbt
For example: When you’re searching for every support team, then write %support% into Wildcard value
If you are not sure which separator should be used to separate individual wildcards contact 2Ring support.