Click HERE to see how Saviynt Intelligence is transforming the industry. |
06/17/2024 01:15 AM
Hi,
We have a requirement to update the role description attribute in role owner campaign templates.
We need to update the same attribute in all the role owner campaign templates. Is there any way we can automate this step? (updating all the role owner campaign template once instead of updating individual campaign template)
Thanks & Regards,
Lakhitha
06/17/2024 01:26 AM
Hi @Lakhitha , you can try using enhancedquery.
06/17/2024 02:58 AM
Hi
Thanks for your response.
Can you please help us on the table information and also sample enhanced query?
Thanks & Regards,
Lakhitha
06/17/2024 05:39 AM
@Lakhitha if want update role_owner table data we can't update it have two primary key
Reference for limitation of all tables
requirement for you can update table
1.
example : select rolekey as roles__primarykey,'ABC' as roles__DESCRIPTION from roles where role_name ('A','B')
2.if not able to update desc via enhanced query , try upload via csv file upload also have option.
06/17/2024 05:09 AM
I assume you are looking to update the Role Desc attribute.
Refer this post : how to convert emergency role to Enterprise role i... - Saviynt Forums - 93029
06/17/2024 05:39 AM
Hi Manish
Thanks for responding,
No, we need to add role description attribute to role owner campaign templates. Please find the below screenshot for your reference.
Thanks & Regards,
Lakhitha
06/17/2024 06:33 AM
Hi Raghu,
I don't want to update the roles table, I just want to add the role description attribute in all the campaign templates at once.
Thanks,
Lakhitha
06/17/2024 06:36 PM
You can explore campaign_template table , all the configuration are stored in configuration_As_json column in the JSON format.
You might have to modify the JSON, add the role description and update it.
However its better to update the same from UI as that would be much easy.
06/18/2024 05:25 AM
Hi Devang,
Thanks for responding. I have explored this option and config JSON varies as per the campaign templates. For all the campaign template I cannot update description attribute at once, I need to run enhanced query individually for every campaign templates.
Thanks & Regards,
Lakhitha
06/18/2024 06:11 AM
Avoid running enhanced query as its json stored in db and if it’s gets messed campaign will behave unexpectedly
06/17/2024 06:38 AM
You need to update manually as you can export campaign templates individually and not in bulk.
06/18/2024 05:26 AM
Thanks for the updates.