IndustriesSettings

Represents the settings for Grantmaking
This type extends the metadata type and inherits its fullName field.

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.

enableCompliantDataSharingForBudget

  • Field Type: boolean
  • Description: Indicates whether the Compliant Data Sharing feature is enabled for the Budget object. Available only if the Grantmaking license is enabled and Grantmaking is enabled.
  • Default value: false

enableCompliantDataSharingForIndividualApplication

  • Field Type: boolean
  • Description: Indicates whether the Compliant Data Sharing feature is enabled for the Individual Application object. Available only if the Grantmaking license is enabled and Grantmaking is enabled.
  • Default value: false

enableCompliantDataSharingForFundingAward

  • Field Type: boolean
  • Description: Indicates whether the Compliant Data Sharing feature is enabled for the Funding Award object. Available only if the Grantmaking license is enabled and Grantmaking is enabled.
  • Default value: false

enableGrantmaking

  • Field Type: boolean
  • Description: Indicates whether the Grantmaking feature is enabled. This option can’t be disabled (false) once it’s enabled (true). Only requires that the Grantmaking license is enabled in the org.
  • Default value: false

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>