Import Customer Order Guides into Choco
This task will link products to customers' order guides in Choco, based on data provided via an XML file.
Settings
Connection
Required
The Choco connection to use. See Connecting to Choco.
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 Choco. 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 <ZynkExternalId>
element in the XML.
Zynk Settings
Examples
A sample input file is shown below. For full documentation see Choco Customer Order Guide XML.
<?xml version="1.0"?>
<CustomerOrderGuides>
<CustomerOrderGuide>
<ZynkExternalId>123456</ZynkExternalId>
<CustomerId>58482754-b9b9-46a8-b4eb-4a33a415cf61</CustomerId>
<CustomerNumber>ZYNK0001</CustomerNumber>
<Products>
<Product>
<ProductId>4be1163f-28c1-4572-a99c-172caa12b4a4</ProductId>
<ExternalId>PE23</ExternalId>
<Unit>Each</Unit>
<CategoryName>Stuff</CategoryName>
</Product>
<Product>
<ProductId>b39a9d18-ef9f-4242-ab35-de2cc1dced39</ProductId>
<ExternalId>HSYE</ExternalId>
<Unit>Pack</Unit>
<CategoryName>Stuff</CategoryName>
</Product>
<Product>
<ProductId>49a3f774-19ec-48b4-a5f9-e7bb6accd28c</ProductId>
<ExternalId>3SF3</ExternalId>
<Unit>Pack</Unit>
<CategoryName>Stuff</CategoryName>
</Product>
</Products>
</CustomerOrderGuide>
</CustomerOrderGuides>