Creating Bundle Line Items
This API creates the bundle and option line items based on the bundle product data object.
API |
Signature |
---|---|
createBundleLineItems |
webService static List createBundleLineItems(Apttus_Config2__ProductConfiguration__c configSO, Apttus_Config2.CPQStruct.ProductBundleDO bundleDO) |
Request Parameter |
||
---|---|---|
Name |
Type |
Description |
configSO | Apttus_Config2__ProductConfiguration__c |
The ID of product configuration sobject. |
bundleDO | Apttus_Config2.CPQStruct.ProductBundleDO |
The bundle details request data object |
Request Data Object - Apttus_Config2.CPQStruct.ProductBundleDO |
||
---|---|---|
Name |
Type |
Description |
BundleProduct | Apttus_Config2CPQStruct.ProductLineItemDO |
The bundle product request data object |
HasOptionProducts | Boolean |
Indicate whether has option products or not. |
OptionProductIds | List<ID> |
The list of option product Ids |
OptionProducts | ListList<ProductLineItemDO> |
The list of option product data objects. |
Data Object - Apttus_Config2.CPQStruct.ProductLineItemDO |
||
---|---|---|
Name |
Type |
Description |
AddedBy | String |
Indicate how was the product added. For example, added by constraint rule, APIs. |
Comments | String |
The comments added in the product. |
CustomData | Apttus_Config2__LineItem__c |
The custom data based on list of custom fields to initialize Line Item record. |
CustomFields | List<String> |
List of Custom Fields. |
EndDate | Date |
The end date of the product. |
productOptionComponentId | ID |
The ID of the Product Option Component (only for option products). |
ProductSO | Product2 |
The product sobject. |
Quantity | Decimal |
The quantity of the product. |
SellingTerm | Decimal |
The selling term of the product. |
StartDate | Date |
The start date of the product. |
Response Parameters |
||
---|---|---|
Field |
Type |
Description |
lineItems | List<Apttus_Config2__LineItem__c> |
The list of IDs for the new bundle line items. |
Code Sample
The sample code below enables you to create bundle and option line items for an existing cart. This API returns the list of line items without committing changes into Salesforce. These line items can be used for further modification and later associate to cart by performing insert operation.