機械翻訳について

出荷確認メソッド、指示およびマーク

ペイロードの例

出荷方法は3つの値で構成されます: 運送業者、サービス・レベルおよび輸送モード。 3つすべてに値を指定する必要があります。 ServiceLevelタグおよびModeOfTransportタグで渡される値は、Oracle Fusion Applicationsソフトウェアで確認できる参照コード(OCEAN、RAIL、TRUCKなど)です。 参照コードの検索方法の詳細は、「参照コードおよび運送業者の検索」の項を参照してください。

  1. 設定およびメンテナンス作業領域で、「運送業者参照の管理」タスクを使用します:
    • オファリング: 製造およびサプライ・チェーン資材管理

    • 機能領域: 運送業者および移動時間

    • タスク: 運送業者参照の管理

  2. 「参照タイプ」フィールドにWSH_SERVICE_LEVELSと入力し、「検索」をクリックして、サービス・レベルの参照コードを検索します。

  3. 「参照タイプ」フィールドにWSH_MODE_OF_TRANSPORTと入力し、「検索」をクリックして、輸送モードの参照コードを検索します。

ノート: 意味列の値ではなく、参照コード列の値(OCEAN、RAIL、TRUCKなど)を使用します。

このペイロードでは、運送業者の名前、サービス・レベルおよび輸送モードを含む出荷方法を指定します。

<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>

このペイロードでは、ルーティング指示、出荷マークおよび出荷指示を指定します。

<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>