Hello Team ,
I need one search query to filter all the accounts for a specific source which does not start with E. Need to save this report
Trying this: @accounts(source.name:ABC AND NOT accountName:E*) but this is not working. Please suggest
Hello Team ,
I need one search query to filter all the accounts for a specific source which does not start with E. Need to save this report
Trying this: @accounts(source.name:ABC AND NOT accountName:E*) but this is not working. Please suggest
Give a try with this query it works fine for me
@accounts(NOT name:E* AND source.name:ABC)
try below search query
@accounts(source.name:“abc” and NOT name:e*)
This is not returning for me cz this result will return only accounts which are correlated with identities , now the machine identities are uncorrelated. basically my human user’s accoutname is getting started with EXXX , whats ever is not starting with E i need to pull up in this report
Search only returns results for identities. It does not search data in uncorrelated accounts, because the data model is based on identity records. You can search accounts that are correlated to identities only.
The easiest thing to do may be to export an account list from your source and filter on the account column.