Newer Version Available

This content describes an older version of this product. View Latest

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>