After the release of Dynamics CRM 2016 update 1, we can now enable SLA for other custom and system entities as well. We can enable SLA using Enable for SLA option under entity definition like below for custom and specific system entities.
Following is a list of additional system entities apart from cases where we can enable SLA.
Let’s implement a simple example and see how we can use SLA with account entity. Consider an example that we want to setup SLA for document verification of the customer, which should be completed after specific hours of creating a customer record into Dynamics CRM. We also need to send a warning email to the department as a reminder after some time if verification is not done. Let’s say, for quick demo, we want to set document verification due in one hour so if it does not complete within one hour of creating customer record, SLA will fail and we want to send reminder in one minute.
Now, let’s implement a simple example and see how we can use SLA with an account entity. Consider an example that we want to setup on SLA for document verification of the customer, which should be completed after eight hours of creating a customer record into Dynamics CRM. We need to send a warning email to the Verification department after four hours if the verification is not done as a reminder and failed notification after eight hours in order to escalate.
Before creating SLA, we need to create some custom fields on account entity which is required for document verification SLA.
- Document Verified – Two Options
We need to setup simple two options field and need to place it over an account entity form. If you are new to creating CRM field, please refer this KB.
- Due – Date and Time
We need to create a calculated date, time field and need to set it’s value by adding one hour to CreatedOn field. We can click on edit button; next to field type and use formula like below,
- KPI – Lookup
We need to create a lookup field in an account entity and need to select target entity as SLA KPI Instance as we required this lookup while creating SLA item. This is only required for the entities other than case entity.
In the next article, we will use this SLA for document verification process.