Skip to content

Import ASN Receipts into DHL Supply Chain

This task will create new or update existing ASN receipts in DHL Supply Chain, based on data provided via an XML file. ASN receipts are also known as 'purchase orders', 'inbound logistics orders' and 'shipment/delivery advice'. They notify the warehouse that a stock replenishment delivery is scheduled or is on its way to the warehouse.

Settings

Connection

Required
The DHL Supply Chain connection to use. See Connecting to DHL Supply Chain.

Fail File

Required
The XML file to save failed records to. The XML format will be the same as the input file.

Input File

Required
The XML file containing records to import into DHL Supply Chain. An example of the XML format is shown below.

Success File

Required
The XML file to save successful records to. The XML format will be the same as the input file.

Prevent Reprocessing

Required
Set to true to prevent the same records being processed more than once, based on the value of the <ExternalId> element in the XML.

Zynk Settings

See Common Task Settings

Examples

A sample input file is shown below. For full documentation see DHL Supply Chain ASN Receipt XML.

<?xml version="1.0"?>
<AsnReceipts>
  <AsnReceipt>
    <ExternalId>5230</ExternalId>
    <FacilityId>GB_0001</FacilityId>
    <CustomerId>CUST0001</CustomerId>
    <ReceiptNumber>TESTRCPT0001</ReceiptNumber>
    <ReceiptType>InboundOrder</ReceiptType>
    <ReceiptDate>2027-07-02T09:00:00Z</ReceiptDate>
    <ReceiptLines>
      <ReceiptLine>
        <LineNumber>1</LineNumber>
        <ItemNumber>TEST0001</ItemNumber>
        <ExpectedQuantity>12</ExpectedQuantity>
      </ReceiptLine>
    </ReceiptLines>
  </AsnReceipt>
</AsnReceipts>