Coverage
Coverage in Salesforce describes whether a customer is entitled to receive service or how an insurance policy applies to them, depending on which Salesforce cloud you are looking at.
Definition
Coverage in Salesforce describes whether a customer is entitled to receive service or how an insurance policy applies to them, depending on which Salesforce cloud you are looking at. In Service Cloud, Coverage refers to the Entitlement and Service Contract check that runs when a Case is created: does this customer have an active support entitlement, and if so, what SLA milestones apply. In Health Cloud and Insurance Cloud, Coverage is a standard object representing a member enrollment in a health or insurance plan, with effective dates, plan tier, and benefit details.
The two senses share an idea: what does this customer have access to and under what terms. Service Cloud coverage drives whether an agent should help and how quickly. Insurance coverage drives whether a claim should be paid and at what level. Both feed reports and dashboards that operations teams use to manage capacity, compliance, and customer experience.
How Coverage works across Service Cloud and the regulated-industry clouds
Coverage in Service Cloud: Entitlements and Service Contracts
In Service Cloud, Coverage is the answer to does this Case-creator have a right to support. The check walks from the Case to the Account, looks up Entitlements (active service contracts), and matches the Case to the entitlement that covers the customer product. If a match is found, the entitlement milestones (first response, resolution time) apply to the Case. If no match, the Case is flagged as uncovered.
How the Entitlement match runs
Salesforce uses Entitlement Templates configured on products. When a Case is created, the Case Product is matched to an Entitlement on the customer Account (or Service Contract Line Item). The match can run through Process Builder, Flow, or Apex. Once matched, the Entitlement Id is set on the Case, the Entitlement Process activates, and the SLA timer starts.
Coverage in Health Cloud
Health Cloud has a Coverage standard object representing a patient enrollment in a health benefits plan. Fields include the Plan (lookup to Insurance Policy), Coverage Start Date and End Date, Coverage Type (Medical, Dental, Vision, and others), Member Identifier, and several plan-specific fields. The object links to the Person Account and to Claims, Authorizations, and Care Plans.
Coverage in Insurance Cloud
Insurance Cloud (part of Financial Services Cloud) uses Coverage to represent the policy-level protection a customer has: Property Coverage, Liability Coverage, Auto Coverage. The object joins to Insurance Policy, Insurance Claim, and Asset (the insured item). Underwriters and claims adjusters work against Coverage records to determine claim payouts.
Reporting and dashboards
Service Cloud Coverage reports show uncovered Cases (a triage queue), Cases by Entitlement (which contracts drive the most volume), and SLA performance by Coverage type. Health Cloud Coverage reports show member enrollment, plan utilization, and gap analysis. Insurance Cloud reports show coverage-level claim frequency and severity for actuarial work.
Common configuration patterns
For Service Cloud, build the Entitlement template on each Product, configure the Service Contract on the Account, and trigger the Entitlement assignment on Case Create. For Health Cloud, the Coverage record is populated through integration with a payer system or member enrollment portal. For Insurance Cloud, Coverage is populated from the underwriting workflow when a new policy is bound.
Coverage vs Entitlement: terminology overlap
In Service Cloud, the standard object is Entitlement; Coverage is the broader concept of the entitlement check. In Health and Insurance Cloud, Coverage is the actual object name. Terminology overlap causes confusion in cross-team conversations. Always clarify which cloud you are talking about before debating.
How to configure Coverage in Service Cloud
For the most common case (Service Cloud entitlement coverage), the setup is Entitlement Templates on Products, Entitlements on Accounts, and an Entitlement Process. The check then runs automatically on Case create.
- Enable Entitlement Management
Setup, Entitlement Management, Entitlement Settings. Check Enable Entitlement Management. This is one-way; plan in sandbox first.
- Build Entitlement Templates
For each product or service tier, create an Entitlement Template with the SLA terms (response time, resolution time, business hours).
- Create Service Contracts and Entitlements on customer Accounts
For each customer who buys support, create a Service Contract on their Account and add Entitlements (from the Entitlement Templates) for the products they bought.
- Configure the Entitlement Process
Build a Process that defines the timing milestones and the actions on milestone (escalate, alert manager, and others). Activate it.
- Trigger Entitlement assignment on Case Create
Use a Flow or Apex trigger to look up the customer active Entitlement when a Case is created and set Entitlement Id on the Case.
- Build the uncovered-Case workflow
For Cases that find no Entitlement match, route to a triage queue or auto-respond with a no-coverage message. Avoid silently dropping uncovered Cases.
- Entitlement Management cannot be disabled once enabled. Pilot in sandbox first.
- Cases with no Entitlement match silently lose SLA timers. Build the uncovered-Case workflow as a hard requirement.
- Service Contract end dates require active maintenance. Without renewals, customers lose coverage at the contract end date and the Case Entitlement check fails.
- Multiple Entitlements on the same Account can match the same Case. Apex logic must pick the right one (usually the most recently active or the most specific to the Case Product).
- Health Cloud and Insurance Cloud Coverage are different objects from the Service Cloud Entitlement. Code targeting one will not find the other; clarify which cloud you are in.
Trust & references
Cross-checked against the following references.
- Entitlement Management OverviewSalesforce Help
- Coverage in Health CloudSalesforce Help
Straight from the source - Salesforce's reference material on Coverage.
- Insurance Cloud OverviewSalesforce Help
- Entitlement Object ReferenceSalesforce Developers
About the Author
Dipojjal Chakrabarti is a B2C Solution Architect with 29 Salesforce certifications and over 13 years in the Salesforce ecosystem. He runs salesforcedictionary.com to help admins, developers, architects, and cert/interview candidates sharpen their fundamentals. More about Dipojjal.
Test your knowledge
Q1. What does Coverage determine?
Q2. Which Salesforce feature enforces coverage automatically?
Q3. What happens when a customer's coverage has expired?
Discussion
Loading discussion…