Share all details related to your problem, including any error messages you may have received.
What’s the best way to generate a report of all the users who belong to OU = Elevated and are orphan in SailPoint. Please suggest a way to do this. Also please let me know if there is a ready report already available.
You can execute sql query something like below to get data .
select
spt_identity.email AS "iga name",
, spt_identity.name AS "iga name"
, spt_link.native_identity AS 'AD'
, ExtractValue(spt_link.attributes,'/Attributes/Map/entry[@key="ou"]/@value') AS "User OU"
from identityiq.spt_identity, identityiq.spt_link
where spt_link.application ='<APP ID>' and spt_identity.correlated=false
and spt_identity.id=spt_link.identity_id
You can also write custom task , but again it will take lot of time to execute depend on the number of account you have in AD , as it need to loop into each account and check the OU.
What is your native Identity of the AD application, are you using distinguishedName itself , if that’s the case , simplest solution would be a minor modification to OOTB Uncorrelated Accounts Report
Just create a copy of Task Definition - Uncorrelated Accounts Report
and Form - Uncorrelated Accounts Report Form
Now in the cloned Form and Task Definition add the below
Form
<Field displayName="Sub String of Native Identity" helpKey="Sub String of Native Identity" name="nativeIdentitySubString" type="String" value="ref:nativeIdentitySubString"/>