OrchestrationPlanCtxMapping
Represents the context mapping that Dynamic
Revenue Orchestrator (DRO) uses to generate and orchestrate a plan for an object, such
as a non-sales transaction for billing or another generic business process.
Parent Type
This type extends the Metadata metadata type and inherits its fullName
field.
File Suffix and Directory Location
OrchestrationPlanCtxMapping components have the suffix .orchestrationPlanCtxMapping and are stored in the orchestrationPlanCtxMappings folder.
Version
OrchestrationPlanCtxMapping components are available in API version 67.0 and later.
Fields
| Field Name | Description |
|---|---|
| contextDefinition |
|
| contextItemNode |
|
| contextMapping |
|
| contextRootNode |
|
| label |
|
| objectName |
|
| orchestrationType |
|
Declarative Metadata Sample Definition
This sample shows the definition of an OrchestrationPlanCtxMapping component for a fulfillment plan that orchestrates an order.
1<?xml version="1.0" encoding="UTF-8"?>
2<OrchestrationPlanCtxMapping xmlns="http://soap.sforce.com/2006/04/metadata">
3 <label>Order Fulfillment Context Mapping</label>
4 <orchestrationType>Fulfillment</orchestrationType>
5 <contextDefinition>SalesTransactionContext__stdctx</contextDefinition>
6 <objectName>Order</objectName>
7 <contextMapping>OrderEntitiesMapping</contextMapping>
8 <contextRootNode>SalesTransaction</contextRootNode>
9 <contextItemNode>SalesTransactionItem</contextItemNode>
10</OrchestrationPlanCtxMapping>This sample package.xml 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>OrchestrationPlanCtxMapping</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.