Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

download

Retrieving the List Option Group

You can use this API to retrieve the list Option Group associated with a product.

API

Signature

getChildOptionGroups

webService static Apttus_Config2.CPQAdminStruct.HierarchyResponseDO getChildOptionGroups(Apttus_Config2.CPQAdminStruct.HierarchyRequestDO hierarchyRequestDO)

Request Parameter

Name

Type

Description

hierarchyRequestDO Apttus_Config2.CPQAdminStruct.HierarchyRequestDO

The option group request data object.

Request Parameter - Apttus_Config2.CPQAdminStruct.HierarchyRequestDO

Name

Type

Description

ProductID Ids

The ID of the product for which you want to retrieve option groups.

Response Data Object- Apttus_Config2.CPQAdminStruct.HierarchyResponseDO

Name

Type

Description

OptionGroupId List<Id>

The Id option associated with the product.

Code Sample

The below sample code returns the list of option group Ids that are associated with a given product name.

public Apttus_Config2.CPQAdminStruct.HierarchyResponseDO getChildOptions(String productName, String optionGroupName) { Apttus_Config2.CPQAdminStruct.HierarchyDO hierDO = new Apttus_Config2.CPQAdminStruct.HierarchyDO(); Apttus_Config2.CPQAdminStruct.HierarchyRequestDO hierRequest = new Apttus_Config2.CPQAdminStruct.HierarchyRequestDO(); Apttus_Config2.CPQAdminStruct.HierarchyResponseDO hierResponse = null; // get product and option group Product2 prod = [SELECT Id FROM Product2 WHERE Name = :productName LIMIT 1]; Apttus_Config2__ClassificationHierarchy__c optionGroup = [SELECT Id FROM Apttus_Config2__ClassificationHierarchy__c WHERE Name = :optionGroupName LIMIT 1]; hierRequest.ProductId = prod.Id; hierRequest.OptionGroupId = optionGroup.Id; hierResponse = Apttus_Config2.CPQAdminWebService.getChildOptions(hierRequest); return hierResponse; }