Key Group Setup
Configuring Favorite views involves defining a filter for Basic Keys and Extra Keys.
You can define a
to allow more than one key value to be filtered. You can also define a using a pattern. Select the option to specify a pattern.A
can have these options:- Operations: You can use NOT, AND, and OR.
- Operands: This is the Key value or part of the Key value.
- Accept: You can use parentheses ( ) for control of logic and brackets [ ] for special characters in a Key value.
This becomes part of the WHERE query:
K1 LIKE '%A1%' AND K1 NOT LIKE 'B%'
DMP always creates LIKE queries:
WHERE K1 LIKE 'C2%'
WHERE (K1 LIKE '%A1%' AND ( K1 NOT LIKE 'B%' OR K1 NOT LIKE 'C%') )
WHERE ( K1 LIKE '?a(''-''%' )
You must be specific or include these special signs in your like string: asterisk (*), apostrophe ('), percent (%), question mark (?), or similar. In this case, brackets ([]) are used.
This means not empty.
This means not empty and any values starting with 201403 followed by any characters except 1 or 3.
Follow these steps to define filters for key groups or key patterns: