PARTNERS - Please join us for our upcoming webinar:
Leveraging Intelligent Recommendations for Operational Transformation.
AMS Partners click HERE | EMEA/APJ Partners click HERE

Analytics to rename the account name

Saviynt_Savvy
Regular Contributor
Regular Contributor

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'.