Customizing identity select list for Forwarding User

Which IIQ version are you inquiring about?

[Replace this text with your version of IIQ. The more specific you can be (7.1, 8.3, 8.X), the more people can help. If you do not know, put Unsure.]

8.3p2

Please share any images or screenshots, if relevant.

Share all details about your problem, including any error messages you may have received.

Whenever User login to Sailpoint and click on Preferences and try to set forwarding user , he should be able to select his Manager or Active users above his level in the hierarchy.

Hi @neelakant3119,

you can edit the list, changing IdentitySelectorConfiguration from debug:
image

On this Link there is the documentation about Delegation, Reassignment, and Forwarding. At end you can find an example to how implement that you want.

Hi @enistri_devo,

I am looking for the reference code to be updated in IdentitySelectorConfiguration xml

Thanks,
Neel

1 Like

You can update below entry in IdentitySelectorConfiguration rule. Below is just for reference code. Please update the filter as per your requirement.

        <entry key="ownerNameSuggestBoxWorkItemListForward">
              <value>
                <IdentityFilter name="ownerNameSuggestBoxWorkItemListForward" order="Ascending">
                  <FilterScript>
                    <Script>
                      <Source>
                        import sailpoint.object.QueryOptions;
                        import sailpoint.object.Filter;
                        import sailpoint.object.Filter.MatchMode;

                        Filter f1 = Filter.eq("inactive", false);
                        f1 = Filter.and(f1,Filter.eq("type", "Human"));
                        f1 = Filter.and(f1,Filter.eq("correlated", true));

                        QueryOptions qo = new QueryOptions();
                        qo.addFilter(f1);
                        qo.addOrdering("firstname", true);

                        return qo;
                      </Source>
                    </Script>
                  </FilterScript>
                  <OrderBy>
                    <String>firstname</String>
                    <String>lastname</String>
                    <String>name</String>
                    <String>id</String>
                  </OrderBy>
                </IdentityFilter>
              </value>
            </entry>

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.