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

Analytics to rename the account name

Saviynt_Savvy
Regular Contributor II
Regular Contributor II

How to write analytics to rename the accounts in specific endpoints when the status of accounts are "Manually Suspended".

Any example of an analytics query would help.

Thanks & Regards,
SaviyntSavvy

1 REPLY 1

rushikeshvartak
All-Star
All-Star
  • You can't update any account name using analytics.
  • Use below enhanced query for same.

    Select ACCOUNTKEY AS accounts__PRIMARYKEY, concat (name, '-SUSPENDED',' ','on-',current_Timestamp) AS accounts__NAME,'SUSPENDED FROM IMPORT SERVICE' AS accounts__STATUS From accounts Where status in ('Manually Suspended')and endpointkey='5' LIMIT 1; 


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