Criteria for Existing Population

Hi, we have several existing populations. I would like to know how do I get what criteria was used to create the population? We are using 8.3

Thanks,
Heidi.

Easiest way is to look at the GroupDefinition object in the debug page and see how it is defined.

So for example, the GroupFilter for populating a Marketing Employee population could look like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE GroupDefinition PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<GroupDefinition indexed="true" name="Marketing Employee" private="true">
    <Description>Marketing Employee</Description>
    <GroupFilter>
        <CompositeFilter operation="AND">
            <Filter operation="NOTNULL" property="emplid"/>
            <Filter operation="EQ" property="Department" value="Marketing"/>
        </CompositeFilter>
    </GroupFilter>
    <Owner>
        <Reference class="sailpoint.object.Identity" name="spadmin"/>
    </Owner>
</GroupDefinition>

Definitions for how to do this are containing this doc - https://community.sailpoint.com/mpomh84452/attachments/mpomh84452/IIQ_docs/628/1/8.3_IdentityIQ_Role_Group_and_Population_Management.pdf

1 Like

perfect, thank you so much