ObjectHierarchyRelationship

Represents an organization’s custom field mappings between a reference object and eligible rebate types. Fields can be mapped from Opportunity, OpportunityLineItem, Quote, QuoteLineItem, and Contract to TransactionJournal.
This type extends the Metadata metadata type and inherits its fullName field.

File Suffix and Directory Location

ObjectHierarchyRelationship components have the suffix ObjectHierarchyRelationship.settings and are stored in the ObjectHierarchyRelationship folder.

Version

ObjectHierarchyRelationship components are available in API version 51.0 and later.

Fields

Field Name Description
childObjectMapping
Field Type
ObjectMapping
Description
Set of inputObject, mappingFields, and outputObject entries.
inputObjRecordsGrpFieldName
Field Type
string
Description
The field name in the input object used to group the records. This field is available in API version 55.0 and later.
mappingType
Field Type
ObjHierarchyMappingType (enumeration of type string)
Description
Specifies the type of relationship between two objects.
Valid values are:
  • ChildToChild
  • ParentToChild
  • ParentToParent
  • Support

This field is available in API version 55.0 and later.

masterLabel
Field Type
string
Description
Master label name of the mapping definition.
outputPntRelationshipFieldName
Field Type
string
Description
The field name that defines the relationship between a parent and child for the output object. This field is available in API version 55.0 and later.
parentObjectMapping
Field Type
ObjectMapping
Description
Required.
Set of inputObject, mappingFields, and outputObject entries.
parentRecord
Field Type
string
Description
The parent record for this object hierarchy relationship. This field is available in API version 55.0 and later.
parentRelationshipFieldName
Field Type
string
Description
Name of the field that defines the relationship between the parent and child.
usageType
Field Type
MappingUsageType (enumeration of type string)
Description
Required.
Name of the usage type of an object hierarchy relationship.
Valid value is:
  • ConvertToSalesAgreement
  • CLMFieldMapping
  • EligibleProgramRebateType
  • MapJournalToMemberAggregate
  • TransformationMapping

ObjectMapping

Represents a set of inputObject, mappingFields, and outputObject entries.

Fields

Field Name Description
inputObject
Field Type
string
Description
Required.
Name of the input object type containing the source fields for mapping. For example, Opportunity or OpportunityLineItem.

You can also use a custom object as the input object type.

Note

mappingFields
Field Type
ObjectMapping​Field
Description
Mapping of source object input fields to target object.
outputObject
Field Type
string
Description
Required.
Name of the output object type receiving data conversion. For example, TransactionJournal.

ObjectMappingField

Represents a set of inputField and outputField entries.

Fields

Field Name Field Type Description
inputField string
Field Type
string
Description
Required.
Field in the object specified by the inputObject field in ObjectMapping. This field is mapped to the field in outputField, which is a field in the object specified by the outputObject field in ObjectMapping.

You can also use custom fields as the input field type.

Note

outputField string
Field Type
string
Description
Required.
Field in the object specified by the outputObject field in ObjectMapping. This field is mapped to the field name in inputField, which is a field in the object specified by the inputObject field in ObjectMapping.

You can also use custom fields as the output field type.

Note

Declarative Metadata Sample Definition

The following are examples of a ObjectHierarchyRelationship component.

Example of mapping between Opportunity and Transaction Journal.

<?xml version="1.0" encoding="UTF-8"?>
<ObjectHierarchyRelationship xmlns="http://soap.sforce.com/2006/04/metadata">
   <parentObjectMapping>
      <inputObject>Opportunity</inputObject>
      <outputObject>TransactionJournal</outputObject>
      <mappingFields>
        <inputField>AccountId</inputField>
        <outputField>MemberId</outputField>
      </mappingFields>
      </mappingFields>  
   </parentObjectMapping>
   <childObjectMapping>
   <inputObject>OpportunityLineItem</inputObject>
      <outputObject>TransactionJournal</outputObject> 
      <mappingFields>
        <inputField>Product2Id</inputField>
        <outputField>ProductId</outputField>
      </mappingFields>
      <mappingFields>
        <inputField>Quantity</inputField>
        <outputField>Quantity</outputField>
      </mappingFields>
   </childObjectMapping>
   <usageType>EligibleProgramRebateType</usageType>
</ObjectHierarchyRelationship>

Example of mapping between Quote and Transaction Journal.

<?xml version="1.0" encoding="UTF-8"?>
<ObjectHierarchyRelationship xmlns="http://soap.sforce.com/2006/04/metadata">
   <parentObjectMapping>
      <inputObject>Quote</inputObject>
      <outputObject>TransactionJournal</outputObject>
      <mappingFields> 
        <inputField>AccountId</inputField>
        <outputField>MemberId</outputField>
      </mappingFields> 
   </parentObjectMapping>
   <childObjectMapping>
      <inputObject>QuoteLineItem</inputObject>
      <outputObject>TransactionJournal</outputObject> 
     <mappingFields>
        <inputField>Product2Id</inputField>
        <outputField>ProductId</outputField>
      </mappingFields>
      <mappingFields>
        <inputField>Quantity</inputField>
        <outputField>Quantity</outputField>
      </mappingFields>
   </childObjectMapping>
   <usageType>EligibleProgramRebateType</usageType>
</ObjectHierarchyRelationship>

Example of mapping between Contract and Transaction Journal.

<?xml version="1.0" encoding="UTF-8"?>
<ObjectHierarchyRelationship xmlns="http://soap.sforce.com/2006/04/metadata">
   <parentObjectMapping>
      <inputObject>Contract</inputObject>
      <outputObject>TransactionJournal</outputObject>
      <mappingFields>
        <inputField>AccountId</inputField>
        <outputField>MemberId</outputField>
      </mappingFields>
    </parentObjectMapping>
    <usageType>EligibleProgramRebateType</usageType>
</ObjectHierarchyRelationship>

The following is an example package.xml that references the previous definition.

<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
      <members>*</members>
      <name>ObjectHierarchyRelationship</name>
    </types>
    <version>51.0</version>
</Package>

Usage

Use the deploy() call to deploy metadata with a .zip file. Every .zip file contains a project manifest, a file that’s named package.xml, and a set of directories that contain the components. The manifest file defines the components that you’re trying to retrieve or deploy in the .zip file. The manifest also defines the API version that’s used for the deployment or retrieval. For more information on the .zip file, deploying, and retrieving the metadata, see Deploying and Retrieving Metadata with the Zip File. You can also deploy and retrieve the metadata API using Postman.

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.