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.

ccrz.ccLogicCartPlace.insertMajorItems

Sets the ccrz__Order__c and ccrz__RequestedDate__c fields on each ccrz__E_OrderItem__c record that represents a major line item in the order. Then, the method performs the DML insert operation on the ccrz__E_OrderItem__c records.

Compatibility

This reference applies to:

Release Managed Package Version API Version
B2B Commerce for Visualforce Winter ’21 4.13 12

Signature

global virtual Map<String, Object> insertMajorItems(Map<String, Object>)

Inputs (Required)

This method accepts the working Map<String, Object> from the ccrz.ccLogicCartPlace.performDMLOnOrderItems method.

This method requires the following keys in the working map:

ccrz.ccLogicCartPlace.MAJOR_ORDER_ITEMS
Map<String, ccrz__E_OrderItem__c>, where:
  • Each key is the Salesforce ID of a source ccrz__E_CartItem__c record that represents a major line item in the cart.
  • Each value is the ccrz__E_OrderItem__c to create for the corresponding major line item in the order.
ccrz.ccLogicCartPlace.ORDER_HEADER
ccrz__E_Order__c record that represents the order to create.

Outputs

This method returns the working Map<String, Object>, and doesn't add or remove any keys.