unknown¶
Description¶
Create a condition for when a certain piece of information is unknown.
Example¶
If you want to trigger a warning when a person's domicile has not yet been registered in the case, attach this condition to the warning:
is unknown never asks for the information¶
is unknown never makes the information it checks necessary, even with "Create missing values" set to yes.
So this rule never asks for duplicate_found:
is known does make its information necessary.
To have the value asked for and still react to it being missing, negate it instead:
| Condition | Asks for the information |
|---|---|
p.first_name is unknown |
no |
not (p.first_name is known) |
yes |
p.first_name is known |
yes |
SNEAKY(p.first_name is known) |
no |