Import Items into DHL Supply Chain
This task will create new or update existing items in DHL Supply Chain, based on data provided via an XML file. Items are also known as 'item master' and 'inventory master'. They represent details of a product within 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
Examples
A sample input file is shown below. For full documentation see DHL Supply Chain Item XML.
<?xml version="1.0"?>
<Items>
<Item>
<FacilityId>GB_0001</FacilityId>
<CustomerId>CUST0001</CustomerId>
<ItemNumber>TEST0001</ItemNumber>
<ItemPart>
<ItemShortDescription>2 PACK PILLOWCASES, GREY - 50X75CM</ItemShortDescription>
<ItemLongDescription>2 PACK PILLOWCASES, GREY - 50X75CM</ItemLongDescription>
</ItemPart>
<Footprint>
<CasesPerLayer>1</CasesPerLayer>
<PalletStackHeight>0</PalletStackHeight>
<FootprintDetails>
<FootprintDetail>
<UomCode>EA</UomCode>
<UomLevel>1</UomLevel>
<GrossWeight>1</GrossWeight>
<NetWeight>1</NetWeight>
<Length>10</Length>
<Width>10</Width>
<Height>10</Height>
<ThresholdPercentage>50</ThresholdPercentage>
</FootprintDetail>
</FootprintDetails>
</Footprint>
</Item>
</Items>