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.
LeadConvertSettings
In the package manifest, all organization settings metadata types are accessed using the Settings name. See Settings for details.
File Suffix and Directory Location
LeadConvertSettings components have the suffix LeadConvertSetting and are stored in the LeadConvertSettings folder.
Version
LeadConvertSettings is available in API versions 39.0 and later.
Fields
| Field Name | Description |
|---|---|
| allowOwnerChange |
|
| objectMapping |
|
| opportunityCreationOptions |
|
ObjectMapping
Represents a custom field mapping between two objects.
| Field Name | Description |
|---|---|
| inputObject |
|
| mappingFields |
|
| outputObject |
|
ObjectMappingField
Represents custom field names to be mapped between objects.
| Field Name | Description |
|---|---|
| inputField |
|
| outputField |
|
Declarative Metadata Sample Definition
The following is an example of the LeadConvertSettings type:
1<?xml version="1.0" encoding="UTF-8"?>
2<LeadConvertSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <allowOwnerChange>false</allowOwnerChange>
4 <objectMapping>
5 <inputObject>Lead</inputObject>
6 <mappingFields>
7 <inputField>custom_lead_field_1</inputField>
8 <outputField>custom_account_field_1</outputField>
9 </mappingFields>
10 <mappingFields>
11 <inputField>custom_lead_field_2</inputField>
12 <outputField>custom_account_field_2</outputField>
13 </mappingFields>
14 <mappingFields>
15 <inputField>custom_lead_field_3</inputField>
16 <outputField>custom_account_field_3</outputField>
17 </mappingFields>
18 <outputObject>Account</outputObject>
19 </objectMapping>
20 <objectMapping>
21 <inputObject>Lead</inputObject>
22 <mappingFields>
23 <inputField>custom_lead_field_4</inputField>
24 <outputField>custom_opportunity_field_1</outputField>
25 </mappingFields>
26 <outputObject>Opportunity</outputObject>
27 </objectMapping>
28 <opportunityCreationOptions>VisibleOptional</opportunityCreationOptions>
29</LeadConvertSettings>Wildcard Support in the Manifest File
The wildcard character * (asterisk) in the package.xml manifest file doesn’t apply to metadata types for feature settings. The wildcard applies only when retrieving all settings, not for an individual setting. For details, see Settings. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.