Newer Version Available
IndustriesManufacturingSettings
Represents the settings for enabling
Manufacturing cloud features like Account Forecasts, Account Manager Targets, and Sales
Agreements.
This type extends the Metadata
metadata type and inherits its fullName field.
In the package manifest, all organization settings metadata types are accessed using the Settings name. See Settings for more details.
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 |
|---|---|---|
| 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. |
| 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. |
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 <enableIndManufacturing>false</enableIndManufacturing>
4 <enableIndustriesMfgAccountForecast>false</enableIndustriesMfgAccountForecast>
5 <enableIndustriesMfgTargets>false</enableIndustriesMfgTargets>
6</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>