Newer Version Available
QuoteSettings
Enables or disables Quotes, which show proposed prices for products and services. This type extends the Metadata metadata type and inherits its fullName field.
File Suffix and Directory Location
QuoteSettings values are stored in a single file named Quote.settings in the settings directory of the corresponding package directory. The .settings files are different from other named components because there is only one settings file for each settings component.
Version
QuoteSettings is available in API version 28.0 and later.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| enableQuote | boolean | When set to true, users can access Quotes. |
Declarative Metadata Sample Definition
The following is an example of the package file.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>Quote</members>
5 <name>Settings</name>
6 </types>
7 <version>28.0</version>
8</Package>The package file references the following Quote.settings file.
1<?xml version="1.0" encoding="UTF-8"?>
2<QuoteSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <enableQuote>true</enableQuote>
4</QuoteSettings>Wildcard Support in the Manifest File
The wildcard character * (asterisk) in the package.xml manifest file doesn’t apply to metadata types for feature settings. The wildcard applies only when retrieving all settings, not for an individual setting. For details, see Settings. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.