Newer Version Available

This content describes an older version of this product. View Latest

IndustriesSettings

Represents settings for Health Cloud.This type extends the Metadata metadata type and inherits its fullName field.

File Suffix and Directory Location

In the package manifest, all organization settings metadata types are accessed using the Settings name. See Settings for details.

IndustriesSettings are stored in a single file named Industries.settings in the settings directory.

Version

Industries settings are available in API version 47.0 and later.

Special Access Rules

Users need the Health Cloud permissions to access the settings available in editions with Health Cloud.

Fields for Health Cloud

Field Name Field Type Description
enableClinicalDataModel boolean Indicates whether Clinical Data Model is enabled for your org. The default is false. Available in API version 51.0 and later.
enableContactCenterAccess boolean Indicates whether Contact Center for Health Cloud app is enabled for your org. The default is false. Available in API version 56.0 and later.
enableCareMgmtSlackAccess boolean Indicates whether Care Coordination for Slack app is enabled for your org. Available in API version 56.0 and later.
enableCustomFlowsOnExpiryPage boolean Indicates whether Custom Flows on Expiry page for Health Cloud app is enabled for your org. Available in API versi 56.0 and later.
enableCustomFlowsOnCycleCount boolean Indicates whether Custom Flows on Cycle Count page for Health Cloud app is enabled for your org. Available in API version 56.0 and later.
enableMultipleCareProgramEnrolleeOrgPref boolean Indicates whether Multiple Care Program Enrollee is enabled for your org. Available in API version 49.0 and later.
enableMedicalDeviceEnabled boolean Indicates whether the Intelligent Sales features are enabled.
enableProviderSearchSyncOrgPref boolean Indicates whether provider data search is synced every six hours. The default is false. This field is available in editions where Health Cloud is enabled.
enableVisitInventoryEnabled boolean Indicates whether the visit data model is enabled.

Declarative Metadata Sample Definition

The following is an example of a Industries.Settings metadata file.

1<?xml version="1.0" encoding="UTF-8"?>
2<IndustriesSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3    <enableClinicalDataModel>true</enableClinicalDataModel>
4    <enableContactCenterAccess>true</enableContactCenterAccess>
5    <enableCareMgmtSlackAccess>true</enableCareMgmtSlackAccess>
6    <enableCustomFlowsOnExpiryPage>true</enableCustomFlowsOnExpiryPage>
7    <enableCustomFlowsOnCycleCount>true</enableCustomFlowsOnCycleCount>
8    <enableMultipleCareProgramEnrolleeOrgPref>false</enableMultipleCareProgramEnrolleeOrgPref>
9    <enableMedicalDeviceEnabled>true</enableMedicalDeviceEnabled>
10    <enableProviderSearchSyncOrgPref>true</enableProviderSearchSyncOrgPref>
11    <enableVisitInventoryEnabled>true</enableVisitInventoryEnabled>
12</IndustriesSettings>

The following is an example package.xml that references the previous definition.

1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3    <types>
4        <members>Industries</members>
5        <name>Settings</name>
6    </types>
7    <version>47.0</version>
8</Package>