Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
DataDotComSettings
Represents the org's Data.com settings.
This type extends the Metadata metadata type and inherits its fullName field.
File Suffix and Directory Location
DataDotComSettings values are stored in the DataDotCom.settings file in the settings folder.
Version
DataDotComSettings components are available in API version 47.0 and later.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| enableAccountExportButtonOff | boolean | Indicates whether Account Export to Excel is enabled for Prospector (true) or not (false). Default value is false. |
| enableAccountImportButtonOff | boolean | Indicates whether Account Import to CRM is enabled for Prospector (true) or not (false). Default value is false. |
| enableAllowDupeContactFromLead | boolean | Indicates whether Prospector Lead Import Duplicate Check is enabled (true) or not (false). Default value is false. |
| enableAllowDupeLeadFromContact | boolean | Indicates whether Prospector Contact Import Duplicate Check is enabled (true) or not (false). Default value is false. |
| enableCleanUpgradeRequested | boolean | This field is no longer in use. |
| enableContactExportButtonOff | boolean | Indicates whether Contact Export to Excel is enabled for Prospector (true) or not (false). Default value is false. |
| enableContactImportButtonOff | boolean | Indicates whether Contact Import to CRM is enabled for Prospector (true) or not (false). Default value is false. |
Declarative Metadata Sample Definition
The following is an example of a DataDotComSettings component.
1<?xml version="1.0" encoding="UTF-8"?>
2<DataDotComSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <enableAccountExportButtonOff>true</enableAccountExportButtonOff>
4 <enableAccountImportButtonOff>true</enableAccountImportButtonOff>
5 <enableAllowDupeContactFromLead>true</enableAllowDupeContactFromLead>
6 <enableAllowDupeLeadFromContact>true</enableAllowDupeLeadFromContact>
7 <enableContactExportButtonOff>true</enableContactExportButtonOff>
8 <enableContactImportButtonOff>true</enableContactImportButtonOff>
9</DataDotComSettings>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>DataDotCom</members>
5 <name>Settings</name>
6 </types>
7 <version>29.0</version>
8</Package>