Ship Confirm Method, Instructions, and Marks

Example Payloads

The ship method is comprised of three values: carrier, service level, and mode of transportation. You must specify a value for all three. The values passed in the ServiceLevel and ModeOfTransport tags are lookup codes (e.g., OCEAN, RAIL, TRUCK, etc.), which you can find in the Oracle Fusion Applications software. See theFind Lookup Codes and Carriers section for more information about how to find lookup codes.

  1. In the Setup and Maintenance work area, use the Manage Carriers Lookups task:
    • Offering: Manufacturing and Supply Chain Materials Management

    • Functional Area: Carriers and Transit Times

    • Task: Manage Carriers Lookups

  2. In the Lookup Type field, enter WSH_SERVICE_LEVELS and click Search to find the lookup codes for the service level.

  3. In the Lookup Type field, enter WSH_MODE_OF_TRANSPORT and click Search to find the lookup codes for the mode of transportation.

Note: Use the values in the Lookup Code column (e.g., OCEAN, RAIL, TRUCK, etc.), not the values in the Meaning column.

This payload specifies the shipping method, which includes the name of the carrier, service level, and mode of transportation.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns1:createAndConfirmAsync xmlns:ns1="http://xmlns.oracle.com/apps/scm/shipping/shipConfirm/deliveries/shipmentService/types/">
         <ns1:shipment xmlns:ship="http://xmlns.oracle.com/apps/scm/shipping/shipConfirm/deliveries/shipmentService/">
            <ship:ShipmentName>S1-DEC29-1</ship:ShipmentName>
            <ship:OrganizationCode>V1</ship:OrganizationCode>
            <ship:CarrierName>DHL</ship:CarrierName>
            <ship:ServiceLevel>2DA</ship:ServiceLevel>
            <ship:ModeOfTransport>AIR</ship:ModeOfTransport>
            <ship:ShipmentLine>
               <ship:DeliveryDetailId>3654860</ship:DeliveryDetailId>
               <ship:ItemNumber>CM11911</ship:ItemNumber>
               <ship:ShippedQuantity unitCode="Each">3</ship:ShippedQuantity>
               <ship:Serials>
                  <ship:TransactionQuantity unitCode="Each">3</ship:TransactionQuantity>
                  <ship:FromSerialNumber>XD100100</ship:FromSerialNumber>
                  <ship:ToSerialNumber>XD100102</ship:ToSerialNumber>
                  <ship:SubinventoryCode>EB</ship:SubinventoryCode>
               </ship:Serials>
            </ship:ShipmentLine>
         </ns1:shipment>
      </ns1:createAndConfirmAsync>
   </soap:Body>
</soap:Envelope>

This payload specifies the routing instructions, shipping marks, and shipping instructions.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns1:createAndConfirmAsync xmlns:ns1="http://xmlns.oracle.com/apps/scm/shipping/shipConfirm/deliveries/shipmentService/types/">
         <ns1:shipment xmlns:ship="http://xmlns.oracle.com/apps/scm/shipping/shipConfirm/deliveries/shipmentService/">
            <ship:ShipmentName>151839</ship:ShipmentName>
            <ship:OrganizationCode>CM_3PL_UPS</ship:OrganizationCode>
            <ship:CarrierName>UPS Ground</ship:CarrierName>
            <ship:ServiceLevel>GND</ship:ServiceLevel>
            <ship:ModeOfTransport>TRUCK</ship:ModeOfTransport>
            <ship:Waybill>WB152017</ship:Waybill>
            <ship:RoutingInstructions>RI152017</ship:RoutingInstructions>
            <ship:ShippingMarks>SM152017</ship:ShippingMarks>
            <ship:ShipmentLine>
               <ship:DeliveryDetailId>9013</ship:DeliveryDetailId>
               <ship:ItemNumber>1000324</ship:ItemNumber>
               <!--Optional:-->
               <ship:ShippingInstructions>SI152017</ship:ShippingInstructions>
               <ship:ShippedQuantity unitCode="Each">1</ship:ShippedQuantity>
               <ship:Serials>
                  <ship:TransactionQuantity unitCode="Each">1</ship:TransactionQuantity>
                  <ship:FromSerialNumber>SL000082</ship:FromSerialNumber>
                  <ship:ToSerialNumber>SL000082</ship:ToSerialNumber>
                  <ship:SubinventoryCode>STOCK</ship:SubinventoryCode>
               </ship:Serials>
            </ship:ShipmentLine>
         </ns1:shipment>
      </ns1:createAndConfirmAsync>
   </soap:Body>
</soap:Envelope>