この文章は Salesforce 機械翻訳システムを使用して翻訳されました。詳細はこちらをご参照ください。
英語に切り替える

DataDotComSettings

組織の Data.com 設定を表します。Metadata メタデータ型を拡張し、その fullName 項目を継承します。

ファイルのサフィックスおよびディレクトリの場所

DataDotComSettings の値は、settings フォルダの DataDotCom.settings ファイルに保存されます。

バージョン

DataDotComSettings コンポーネントは、API バージョン 47.0 以降で使用できます。

項目

項目名 項目の型 説明
enableAccountExportButtonOff boolean [Excel への取引先エクスポート] がプロスペクタで有効か (true)、否か (false) を示します。デフォルト値は false です。
enableAccountImportButtonOff boolean [CRM への取引先インポート] がプロスペクタで有効か (true)、否か (false) を示します。デフォルト値は false です。
enableAllowDupeContactFromLead boolean [プロスペクタのリードインポート重複チェック] が有効か (true)、否か (false) を示します。デフォルト値は false です。
enableAllowDupeLeadFromContact boolean [プロスペクタの取引先責任者インポート重複チェック] が有効か (true)、否か (false) を示します。デフォルト値は false です。
enableCleanUpgradeRequested boolean この項目は使用されていません。
enableContactExportButtonOff boolean [Excel への取引先責任者エクスポート] がプロスペクタで有効か (true)、否か (false) を示します。デフォルト値は false です。
enableContactImportButtonOff boolean [CRM への取引先責任者インポート] がプロスペクタで有効か (true)、否か (false) を示します。デフォルト値は false です。

宣言的なメタデータの定義のサンプル

DataDotComSettings コンポーネントの例を次に示します。

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>
前の定義を参照する package.xml の例を次に示します。
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>