I need to start setting up QC check points in my workflows.
I need to check there are no empty fields for certain records (a tiny subset) do not contain null or empty values. I want a warning and ideally I want the workflow to stop.
In the scenario below, I need to know if any records with the S/N 9999999999 have any corresponding isempty() or isnull() values in the fields NAME and REGION.
I need an alert that stops the workflow and says this is why.
| S/N | NAME | REGION |
| 9999999999 | MIKE | WEST |
| 9999999999 | SEAN | null() |
| 9999999999 | MARK | EAST |
| 9999999999 | CHASE | NORTH |
| 9999999999 | | SOUTH |