Exclude persons via source mapping
For more information, see Exclusions.
For the relevant source system, Edit a source system.
Go to the Person tab.
Add the
Excludedfield to the person mappings by following the instructions in Map an additional field.
Click the
Excludedfield to expand it.
Select Fixed, Field, or Complex for the field type.
Select Fixed and enable the Excluded toggle if you want all persons from this source system to be excluded.

If you select Field, the field from your raw data should contain the boolean value
trueorfalse. Persons with atruevalue are excluded.Select Complex if you want to use Complex mappings to determine the exclusion status through a JavaScript function. The function must return a boolean value. For example:
function getEnabled() { if (source.Contracts[0].Function.Name === "CEO") { return true; } else { return false; } } getEnabled();
For another example script, see Test Provisioning.
Affected persons will be excluded from Enforcement during the next snapshot. They are listed in the Excluded Persons pane in Business > Exclusions, and labeled with the Source indicator.

To re-include persons, Re-include a person.