Is there a way where we can remove existing sla definitions completely in one shot?
Release : 12.1
Component : CA WORKLOAD AUTOMATION iDASH FOR CA 7
The easiest and fast way to do this would be via the DB:
update idash_config set deleted = 5 where deleted = 0 and type = 'sla'
Setting deleted = 5 leaves the definitions in the DB, in case you change your mind about some of the SLA's and want to reactivate them.
To retrieve the SLA's back run the following query:
update idash_config set deleted = 0 where deleted = 5 and type = 'sla' and tag = 'idash.sla.name' and value = 'slaName^instanceName'