Newer Version Available
IndustriesSettings
In the package manifest, all organization settings metadata types are accessed using the Settings name.
File Suffix and Directory Location
IndustriesSettings are stored in a single file named Industries.settings in the settings directory.
Version
Industries settings for Grantmaking are available in API version 59.0 and later.
Special Access Rules
Unless noted otherwise, these settings are available only if the Grantmaking license is enabled, Grantmaking is enabled, and the Manage Application system permission is assigned to users.
Fields
Industries settings for Grantmaking are available in API version 59.0 and later.
| Field Name | Field Type | Description |
|---|---|---|
| enableCompliantDataSharingForBudget | boolean | Indicates whether the Compliant Data Sharing feature is enabled for the Budget object. The default is false. Available only if the Grantmaking license is enabled and Grantmaking is enabled. |
| enableCompliantDataSharingForIndividualApplication | boolean | Indicates whether the Compliant Data Sharing feature is enabled for the Individual Application object. The default is false. Available only if the Grantmaking license is enabled and Grantmaking is enabled. |
| enableCompliantDataSharingForFundingAward | boolean | Indicates whether the Compliant Data Sharing feature is enabled for the Funding Award object. The default is false. Available only if the Grantmaking license is enabled and Grantmaking is enabled. |
| enableGrantmaking | boolean | Indicates whether the Grantmaking feature is enabled. The default is false. This option can’t be disabled (false) once it’s enabled (true). Only requires that the Grantmaking license is enabled in the org. |
Declarative Metadata Sample Definition
The following is an example of an Industries.Settings metadata file.
1<?xml version="1.0" encoding="UTF-8"?>
2<IndustriesSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <enableGrantmaking>true</enableGrantmaking>
4 <enableCompliantDataSharingForBudget>true</enableCompliantDataSharingForBudget>
5 <enableCompliantDataSharingForIndividualApplication>true</enableCompliantDataSharingForIndividualApplication>
6 <enableCompliantDataSharingForFundingAward>true</enableCompliantDataSharingForFundingAward>
7</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>