Click HERE to see how Saviynt Intelligence is transforming the industry. |
01/09/2024 10:42 PM
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
01/10/2024 06:24 AM
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.
01/12/2024 12:22 AM
Hi @ARNAB86,
We are checking on your request and we will keep you posted.
01/12/2024 12:28 AM
Hi @ARNAB86,
Try something like below
(&(objectCategory=person)(objectClass=user)(employeeID=T?????DA))
Replace employeeID with actual field name.
01/12/2024 12:35 AM
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.
01/12/2024 01:26 AM
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]*))
01/12/2024 02:13 AM
Still not working...
01/14/2024 06:16 PM
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.