Building Hierarchy of Products
You can use this API to build a hierarchy of products based on a list of parent and child pairs.
API |
Signature |
---|---|
buildHierarchy |
webService static Apttus_Config2.CPQAdminStruct.HierarchyResponseDO buildHierarchy(Apttus_Config2.CPQAdminStruct.HierarchyRequestDO hierarchyRequestDO) |
Request Parameter |
||
---|---|---|
Name |
Type |
Description |
hierarchyRequestDO | Apttus_Config2.CPQAdminStruct.HierarchyRequestDO |
The hierarchy request data object. |
Request Data Object - Apttus_Config2.CPQAdminStruct.HierarchyRequestDO |
||
---|---|---|
Name |
Type |
Description |
HierarchyDOs | List<Apttus_Config2.CPQAdminStruct.HierarchyDO> |
the list of hierarchy data object |
isCascadeGroupChanges | Boolean |
Indicates whether to reflect the changes made to this instance of the option group to all of its sibling option groups across products. |
OptionGroupId | Id |
The Id of the option group. |
OptionGroupIds | List <Id> |
The list of option group Ids to be associated with the bundle product. |
ProductId | Id |
The Id of the product to be the parent in the hierarchy. |
ProductIds | List <Id> |
The list of child product Ids. |
Data Object - Apttus_Config2.CPQAdminStruct.HierarchyDO |
||
---|---|---|
Name |
Type |
Description |
ChildOptionGroupId | Id |
The Id of the child option child group. |
ChildProductId | Id |
The Id of the child product. |
ParentOptionGroupId | Id |
The Id of the parent option group. |
ParentProductId | Id |
The Id of the parent product. |
Response Parameter - Apttus_Config2.CPQAdminStruct.HierarchyResponseDO |
||
---|---|---|
Field |
Type |
Description |
ProductOptionGroupDO | Apttus_Config2.CPQAdminStruct2.ProductOptionGroupDO |
The parent option group data object. |
Success | Boolean |
Indicates whether building hierarchy was successful or not. |
Data Object - Apttus_Config2.CPQAdminStruct2.ProductOptionGroupDO |
||
---|---|---|
Field |
Type |
Description |
ChildOptionGroupDOs | List<Apttus_Config2.CPQAdminStruct2.ProductOptionGroupDO> |
The list of child option group data object. |
ChildProductOptionGroupSOs | List<Apttus_Config2__ProductOptionGroup__c> |
The list of child product option groups. |
ComponentSOs | List<Apttus_Config2__ProductOptionComponent__c> |
The list of product option components. |
ProductOptionComponentDOs | List<Apttus_Config2.CPQAdminStruct2.ProductOptionComponentDO> |
The list of product option components data objects. |
ProductOptionGroupSO | Apttus_Config2__ProductOptionGroup__c |
The sObject of the product option group. |
Data Object - Apttus_Config2.CPQAdminStruct2.ProductOptionComponentDO |
||
---|---|---|
Field |
Type |
Description |
DefaultQuantityExpressionSO | Apttus_Config2__FieldExpression__c |
The sObject of default quantity expression. |
MaxQuantityExpressionSO | Apttus_Config2__FieldExpression__c |
The sObject of max quantity expression |
MinQuantityExpressionSO | Apttus_Config2__FieldExpression__c |
The sObject of the product option group. |
ProductOptionComponentSO | Apttus_Config2__ProductOptionComponent__c |
The sObject of the product option component. |
Code Sample
The below sample code demonstrates how to build a hierarchy on parent and child products.