Update Shipping Method

Example Payload

This payload updates the shipping method.

Note: The shipping method is updated at the shipment level, not the line level.
Where:
  • CarrierPartyNumber=Party number of the carrier

  • ServiceLevel=Lookup code for the service level

  • ModeOfTransport=Lookup code for the mode of transport

For information about how to find lookup codes, see the Find Lookup Codes and Carriers section.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <ns1:processCreateUpdateShipment xmlns:ns1="http://xmlns.oracle.com/apps/scm/shipping/shipConfirm/deliveries/shipmentService/types/">
            <ns1:apiVersionNumber>1.0</ns1:apiVersionNumber>
            <ns1:InitMsgList>T</ns1:InitMsgList>
            <ns1:ActionCode>UPDATE</ns1:ActionCode>
            <ns1:ShipmentInformation xmlns:ns2="http://xmlns.oracle.com/apps/scm/shipping/shipConfirm/deliveries/shipmentService/">
                <ns2:Shipment>2627853</ns2:Shipment>
                <ns2:CarrierPartyNumber>10001</ns2:CarrierPartyNumber>
                <ns2:ServiceLevel>2DA</ns2:ServiceLevel>
                <ns2:ModeOfTransport>PARCEL</ns2:ModeOfTransport>
            </ns1:ShipmentInformation>
        </ns1:processCreateUpdateShipment>
    </soap:Body>
</soap:Envelope>