Filter Script to list Identities having active accounts on an application

IdentityIQ 8.3:

Hello Everyone, I am trying to use the advanced search on Advanced Analytics to retrieve identities that have active accounts on a particular application.

I can filter identities that have accounts on a particular application using (links.application.name i== “Application Name”) but this also returns Disabled accounts.

I tried using the below filter script but it doesn’t work:
(links.inactive == “false” && links.application.name i== “Application Name”)

Hi @saadkhan2929,

try to use links.iiqDisabled i== false

Hi Saad,

Could you please try below filter?

(links.iiqDisabled i== false && links.application.name i== “TRAKK”)

Change the application name in TRAKK string. I hope that will work.

Hello Experts,

Thanks for your responses. Unfortunately these do not work. I get this error:

Even when I use the ‘i’ in links.iiqDisabled i== false), the result is same.

Example: (links.iiqDisabled i== false && links.application.name i== “Active Directory”)

try to put the application filter with Add Filter

later add && links.iiqDisabled i== false and save it

the filter will appers like that but it works

Thank you @enistri_devo for the detailed response. It works!