ProcedureOutputResolution

Represents the pricing resolution for a pricing element determined by using strategy name and formula.

Parent Type

This type extends the Metadata metadata type and inherits its fullName field.

File Suffix and Directory Location

ProcedureOutputResolution components have the suffix .procedureOutputResolution and are stored in the procedureOutputResolution folder.

Version

ProcedureOutputResolution components are available in API version 63.0 and later.

Special Access Rules

This metadata type is available with Salesforce Pricing.

Fields

Field Name Description
developerName
Field Type
string
Description

Required.

API name of the procedure output resolution.
formula
Field Type
string
Description

Required.

Stores the encoded formula as text.

isActive
Field Type
boolean
Description

Required.

Indicates whether the strategy is active (true) or not (false).

isInternal
Field Type
boolean
Description
Reserved for internal use.
masterLabel
Field Type
string
Description

Required.

A user-friendly name for the procedure output resolution, which is defined when the ProcedureOutputResolution record is created.

pricingElement
Field Type
string
Description

Required.

Pricing element on which the procedure output resolution is defined.

Declarative Metadata Sample Definition

Here's an example of a ProcedureOutputResolution component.

1<?xml version="1.0" encoding="UTF-8"?>
2<ProcedureOutputResolution xmlns="http://soap.sforce.com/2006/04/metadata">
3    <developerName>ProcedureOutputResolution</developerName>
4    <isActive>false</isActive>
5    <isInternal>false</isInternal>
6    <masterLabel>Procedure Output Resolution</masterLabel>
7    <pricingElement>ListPrice</pricingElement>
8    <formula>MAX(ListPrice)</formula>
9</ProcedureOutputResolution>

Here's 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>*</members>
5        <name>ProcedureOutputResolution</name>
6    </types>
7    <version>67.0</version>
8</Package>

Wildcard Support in the Manifest File

This metadata type supports the wildcard character * (asterisk) in the package.xml manifest file. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.