Newer Version Available

This content describes an older version of this product. View Latest

IndustriesSettings

Represents settings for Net Zero Cloud. This type extends the Metadata metadata type and inherits its fullName field.

Where possible, we changed noninclusive terms to align with our company value of Equality. Because changing terms in our code can break current implementations, we maintained this metadata type’s name.

Important

File Suffix and Directory Location

In the package manifest, all organization settings metadata types are accessed using the Settings name. See Settings for more details.

IndustriesSettings are stored in a single file named Industries.settings in the settings directory.

Version

Industries settings are available in API version 47.0 and later.

Special Access Rules

Users need Net Zero Cloud permissions to access the settings available in editions with the Net Zero Cloud Starter and Net Zero Cloud Growth licenses.

Fields for Net Zero Cloud

Field Name Description
enableSCAssignFootprint
Field Type
boolean
Description
Indicates whether Assign Carbon Footprint to Energy Use Records feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCBEIEnabled
Field Type
boolean
Description
Indicates whether Manage Building Energy Intensity feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCDGF
Field Type
boolean
Description
Indicates whether Manage Data Gaps feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCCarbonAccounting
Field Type
boolean
Description
Indicates whether Manage Carbon Accounting feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCCreateFootprint
Field Type
boolean
Description
Indicates whether Auto-Create Carbon Footprints feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCScope3HubEnabled
Field Type
boolean
Description
Indicates whether Manage Scope 3 Procurement Hub feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCEmssnsForecasting
Field Type
boolean
Description
Indicates whether Manage Carbon Emissions Forecast feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCTargetSetting
Field Type
boolean
Description
Indicates whether Manage Emissions Target feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCExternalEngMgmt
Field Type
boolean
Description
Indicates whether Manage Supplier Sustainability Data feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSCWasteManagement
Field Type
boolean
Description
Indicates whether Manage Waste-Related Data feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.
enableSustainabilityCloud
Field Type
boolean
Description
Indicates whether Net Zero Cloud feature is enabled for your org. The default is false. Available in API version 54.0 and later in editions where Net Zero Cloud is enabled.

Declarative Metadata Sample Definition

The following is an example of a Industries.Settings metadata file.

1<?xml version="1.0" encoding="UTF-8"?>
2<IndustriesSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3   <enableSCAssignFootprint>true</enableSCAssignFootprint>
4   <enableSCBEIEnabled>true</enableSCBEIEnabled>
5   <enableSCDGF>true</enableSCDGF>
6   <enableSCCarbonAccounting>true</enableSCCarbonAccounting>
7   <enableSCCreateFootprint>true</enableSCCreateFootprint>
8   <enableSCScope3HubEnabled>true</enableSCScope3HubEnabled>
9   <enableSCEmssnsForecasting>true</enableSCEmssnsForecasting>
10   <enableSCTargetSetting>true</enableSCTargetSetting>
11   <enableSCExternalEngMgmt>true</enableSCExternalEngMgmt>
12   <enableSCWasteManagement>true</enableSCWasteManagement>
13   <enableSustainabilityCloud>true</enableSustainabilityCloud>
14</IndustriesSettings>

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>Industries</members>
5       <name>Settings</name>
6   </types>
7   <version>54.0</version>
8</Package>