Newer Version Available

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

IndustriesSettings

Represents settings for Life Sciences Cloud.

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

Parent Type

This type extends the Metadata metadata type and inherits its fullName field.

File Suffix and Directory Location

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

Version

The settings for Life Sciences Cloud are available in API version 61.0 and later.

Fields for Life Sciences Cloud

Field Name Field Type Description
enableAdverseEvents boolean Indicates whether Adverse Events and its data model is enabled for your org (true) or not (false). The default value is false. Available in API version 61.0 and later.
enableComprehendMedical boolean Indicates whether Comprehend Medical Analysis is enabled for your org (true) or not (false). The default value is false. This field is available in API version 54.0 and later.
enableIESentimentAnalysis boolean Indicates whether Industries Einstein Sentiment Insights is enabled for your org (true) or not (false). The default value is false. This field is available in API version 54.0 and later.
enableLifeSciencesClinialTrailManagement boolean Indicates whether Clinical Trial Management and its data model is enabled for your org (true) or not (false). Using this feature, organizations can design and execute clinical trials and manage trial participant journeys. The default value is false. Available in API version 61.0 and later.
enableTrialManagementRandomization boolean Indicates whether Research Study Randomization is enabled for your org (true) or not (false). Using this feature, users can design and run randomization procedures for their clinical trials. The default value is false. Available in API version 61.0 and later.

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    <enableLifeSciencesClinialTrailManagement>true</enableLifeSciencesClinialTrailManagement>
4    <enableAdverseEvents>true</enableAdverseEvents>
5    <enableTrialManagementRandomization>true</enableTrialManagementRandomization>
6</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>63.0</version>
8</Package>