No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
QuoteSettings
Enables or disables Quotes, which show proposed prices for products and services. It 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, as 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>