Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Object filter in Connection

ARNAB86
Regular Contributor
Regular Contributor

Hi Team,

Need to filter the account starting with "T" followed by five digit and ending with "DA"

Please suggest how to write it

Example : T12343DA

Thanks

Arnab Pal

7 REPLIES 7

dgandhi
All-Star
All-Star

Try something like below

(&(objectCategory=person)(objectClass=user)(employeeID=T*DA))

Replace employeeID with actual field name

As best practice try the search filter in ldap browser and see if it gives expected result. If yes then you can use the same in Saviynt connection.

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.

DixshantValecha
Saviynt Employee
Saviynt Employee

Hi @ARNAB86,

We are checking on your request and we will keep you posted.

DixshantValecha
Saviynt Employee
Saviynt Employee

Hi @ARNAB86,

Try something like below

(&(objectCategory=person)(objectClass=user)(employeeID=T?????DA))

Replace employeeID with actual field name.

Hi Dixshant

Thanks for your reply

Actually we are looking to filter out only the account which started with "T" followed by only digit

we have different kind of account like T53556,T65652A,T5535DA

So i just want to filter T53556 means starting with T followed by any numbers.

DixshantValecha
Saviynt Employee
Saviynt Employee

Hi @ARNAB86,

To filter the account starting with “T” followed by only digits, Try something like below

(&(objectCategory=person)(objectClass=user)(employeeID=T[0-9]*))

Still not working...

 try the search filter in ldap browser and see if it gives expected result. If yes then you can use the same in Saviynt connection.


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.