Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
OrchestrationPlanCtxMapping
Parent Type
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>68.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.