Newer Version Available
IndustriesSettings
Represents the settings for enabling features like
Criteria-Based Search and Filter that’s used for vehicle inventory visibility.
File Suffix and Directory Location
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
Settings are specific to an industry vertical and are only available to customers with org editions where the vertical is enabled.
Fields for Automotive Cloud
| Field Name | Field Type | Description |
|---|---|---|
| enableCriteriaBasedSearchAndFilter | boolean | Indicates whether Criteria-Based Search and Filter is enabled (true) or disabled (false) for your org. The default value is false. This field is available in editions where Automotive Cloud is enabled. |
| enableAppraisalMgmt | boolean | Indicates whether Appraisal Management is enabled (true) or disabled (false) for your org.. The default value is false. This field is available in editions where Automotive Cloud is enabled and from API version 63.0 and later. |
Declarative Metadata Sample Definition
The following is an example of an Industries.Settings metadata component.
1<?xml version="1.0" encoding="UTF-8"?>
2<IndustriesSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <enableCriteriaBasedSearchAndFilter>true</enableCriteriaBasedSearchAndFilter>
4 <enableAppraisalMgmt>true</enableAppraisalMgmt>
5</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>47.0</version>
8</Package>