dw.order
Class ShipmentShippingModel
Object
dw.order.ShipmentShippingModel
Instances of ShipmentShippingModel provide access to shipment-level shipping information, such as applicable and inapplicable shipping methods and shipping cost.
Use ShippingMgr.getShipmentShippingModel(Shipment) to get the shipping model for a specific shipment.
Properties
applicableShippingMethods  :  Collection  (Read Only)
The active applicable shipping methods for the shipment related to this shipping model. A shipping method is applicable for a shipment if it does not exclude any of the products in the shipment, and does not exclude the shipment's shipping address, if this is set. Also checks that the the shipment customer belongs to an assigned customer group of the shipment (if any are assigned).
inapplicableShippingMethods  :  Collection  (Read Only)
The active inapplicable shipping methods for the shipment related to this shipping model. A shipping method is inapplicable for a shipment if it is inapplicable for at least one product contained in the shipment, or the shipping address is excluded by the shipping method, or the shipping method is restricted to customer groups that the shipment customer is not a part of.
Constructor Summary
This class does not have a constructor, so you cannot create it directly.
Method Summary
getApplicableShippingMethods() : Collection
Returns the active applicable shipping methods for the shipment related to this shipping model.
getApplicableShippingMethods(shippingAddressObj : Object) : Collection
Returns the active applicable shipping methods for the shipment related to this shipping model and the specified shipping address.
getInapplicableShippingMethods() : Collection
Returns the active inapplicable shipping methods for the shipment related to this shipping model.
getInapplicableShippingMethods(shippingAddressObj : Object) : Collection
Returns the active inapplicable shipping methods for the shipment related to this shipping model and the specified shipping address.
getShippingCost(shippingMethod : ShippingMethod) : ShipmentShippingCost
Returns the shipping cost object for the related shipment and the specified shipping method.
Salesforce Commerce Cloud Courses
Salesforce B2C Commerce Developer - Certification Tests
Why risk failing the SFCC exam? Get 180 real questions, killer content, and everything you need to crush the Salesforce B2C Commerce Developer certification.

Becoming a Salesforce B2C Commerce Developer is your ticket to higher salaries, better job opportunities, and the credibility to stand out from the competition. But let's be honestβ€”passing the certification exam isn't easy. That's where we come in.
Salesforce Javascript Developer I - Certification Tests
Not just another prep courseβ€”this is your shortcut to passing. Master JavaScript for Salesforce and go from 'hoping to pass' to knowing you will. Ready to start?

This isn't just another prep courseβ€”it's your shortcut to mastering the skills and confidence you need to pass. With multiple practice tests covering every section and a final exam simulation designed to mirror the real thing, you'll feel like you've already aced it before test day.
Salesforce B2C Commerce Architect - Certification Tests
Think the Developer exam was hard? Welcome to the next level.

The Salesforce B2C Commerce Architect certification is a whole different gameβ€”complex solutions, elevated difficulty, and skills that set you apart in the eCommerce industry. That's why we're including 11 downloadable PDF guides, packed with best practices and strategies to help you prepare for the exam and build confidence in every topic.
Method Detail
getApplicableShippingMethods
getApplicableShippingMethods() : Collection
Returns the active applicable shipping methods for the shipment related to this shipping model. A shipping method is applicable for a shipment if it does not exclude any of the products in the shipment, and does not exclude the shipment's shipping address, if this is set. Also checks that the the shipment customer belongs to an assigned customer group of the shipment (if any are assigned).
Returns:
Applicable shipping methods for the shipment

getApplicableShippingMethods
getApplicableShippingMethods(shippingAddressObj : Object) : Collection
Returns the active applicable shipping methods for the shipment related to this shipping model and the specified shipping address. A shipping method is applicable if it does not exclude any of the products in the shipment, it does not exclude the specified shipping address, and the shipment customer belongs to an assigned customer group for the shipment (if any are assigned).

The parameter shippingAddressObj must be a JavaScript literal with the same properties as an OrderAddress object, or alternatively a Map. For example:

 model.getApplicableShippingMethods (
    { countryCode: "US",
      stateCode: "MA,
      custom { POBox : true }
    }
 )
 
This method is useful when it is needed to retrieve the list of applicable shipping methods for an address before the address is saved to the shipment.
Parameters:
shippingAddressObj - A JavaScript object representing an order address, must not be null.
Returns:
Applicable shipping methods for the shipment

getInapplicableShippingMethods
getInapplicableShippingMethods() : Collection
Returns the active inapplicable shipping methods for the shipment related to this shipping model. A shipping method is inapplicable for a shipment if it is inapplicable for at least one product contained in the shipment, or the shipping address is excluded by the shipping method, or the shipping method is restricted to customer groups that the shipment customer is not a part of.
Returns:
Inapplicable shipping methods for the shipment

getInapplicableShippingMethods
getInapplicableShippingMethods(shippingAddressObj : Object) : Collection
Returns the active inapplicable shipping methods for the shipment related to this shipping model and the specified shipping address. A shipping method is inapplicable if it is inapplicable for at least one product contained in the shipment, or the specified shipping address is excluded by the shipping method, or the shipping method is restricted to customer groups that the shipment customer is not a part of.

The parameter shippingAddressObj must be a JavaScript literal with the same properties as an OrderAddress object, or alternatively a Map. For example:

 model.getApplicableShippingMethods (
    { countryCode: "US",
      stateCode: "MA,
      custom { POBox : true }
    }
 )
 
This method is useful when it is needed to retrieve the list of applicable shipping methods for an address before the address is saved to the shipment.
Parameters:
shippingAddressObj - A JavaScript object representing an order address.
Returns:
Inapplicable shipping methods for the shipment

getShippingCost
getShippingCost(shippingMethod : ShippingMethod) : ShipmentShippingCost
Returns the shipping cost object for the related shipment and the specified shipping method. Shipping cost for shipments depended on the merchandise total of the shipment. The method uses the adjusted merchandise total after product and order discounts, and excluding products with product-level fixed-price shipping cost.

Parameters:
shippingMethod - the shipping method to use.
Returns:
Product shipping cost

β™₯
Notifications pending to read