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.
IndustriesManufacturingSettings
File Suffix and Directory Location
IndustriesManufacturingSettings values are stored in a single file named IndustriesManufacturing.settings in the settings directory.
Version
IndustriesManufacturingSettings components are available in API version 47.0 and later.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| enableConnectedAssetSrvcsCmpnt | boolean | Indicates whether the predefined components for Connected Asset Services feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 61.0 and later. |
| enableIndManufacturing | boolean | Indicates whether the Sales Agreements feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. |
| enableIndustriesMfgAccountForecast | boolean | Indicates whether the Account Forecasts feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. |
| enableIndustriesMfgAdvForecast | boolean | Indicates whether the Advanced Account Forecasting feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. |
| enableIndustriesMfgIAS | boolean | Indicates whether the Default Analytics Dashboards setting, available with the Sales Agreements feature, of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. |
| enableIndustriesMfgProgram | boolean | Indicates whether the Manufacturing Programs (program-based business) feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. Available in API version 54.0 and later. |
| enableIndustriesMfgTargets | boolean | Indicates whether the Account Manager Targets feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 49.0 and later. |
| enableMfgAgents | boolean | Indicates whether the Manufacturing Agents feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 64.0 and later. |
| enableMfgAgentsExprcCloud | boolean | Indicates whether the Manufacturing Agents for Experience Cloud feature is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 67.0 and later. |
| enableMfgAgentsPilot | boolean | Reserved for future use. |
| enablePtnrLeadMgmtMappings | boolean | Indicates whether the Vehicle And Asset Finance feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 60.0 and later. |
| enableVehAndAstLending | boolean | Indicates whether the Vehicle and Asset Lending feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 62.0 and later. |
| enableVehicleAndAssetFinance | boolean | Indicates whether the Vehicle And Asset Finance feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 60.0 and later. |
| enableVehAssetFinAddtnlCmpnts | boolean | Indicates whether the predefined components for Vehicle And Asset Finance feature of Manufacturing cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 60.0 and later. |
Declarative Metadata Sample Definition
The following is an example of a IndustriesManufacturingSettings component.
1<?xml version="1.0" encoding="UTF-8"?>
2<IndustriesManufacturingSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <enableConnectedAssetSrvcsCmpnt>true</enableConnectedAssetSrvcsCmpnt>
4 <enableIndManufacturing>false</enableIndManufacturing>
5 <enableIndustriesMfgAccountForecast>false</enableIndustriesMfgAccountForecast>
6 <enableIndustriesMfgAdvForecast>false</enableIndustriesMfgAdvForecast>
7 <enableIndustriesMfgIAS>false</enableIndustriesMfgIAS>
8 <enableIndustriesMfgProgram>false</enableIndustriesMfgProgram>
9 <enableIndustriesMfgTargets>false</enableIndustriesMfgTargets>
10 <enableMfgAgents>false</enableMfgAgents>
11 <enableMfgAgentsExprcCloud>false</enableMfgAgentsExprcCloud>
12 <enablePtnrLeadMgmtMappings>false</enablePtnrLeadMgmtMappings>
13 <enableVehAndAstLending>true</enableVehAndAstLending>
14 <enableVehAssetFinAddtnlCmpnts>true</enableVehAssetFinAddtnlCmpnts>
15 <enableVehicleAndAssetFinance>true</enableVehicleAndAssetFinance>
16</IndustriesManufacturingSettings>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>IndustriesManufacturing</members>
5 <name>Settings</name>
6 </types>
7 <version>47.0</version>
8</Package>