Skip to content

Import Customer Transactions into Sage 200 Evolution

This task will create new customer transactions in Sage 200 Evolution from an XML file, with the option to allocate them to other customer transactions.

Settings

Connection

Required
The Sage 200 Evolution connection to use. See Connecting to Sage 200 Evolution

Fail File

Required
The file to save failed records to.

Input File

Required
The file containing records to import into Sage 200 Evolution.

Success File

Required
The file to save successful records to.

Branch Context

Optional
Select a branch to connect to Sage 200 Evolution as from the drop down menu. Leave blank to use the 'global' branch.

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 Sage 200 Evolution Customer Transaction XML.

<?xml version="1.0"?>
<CustomerTransactions>
  <CustomerTransaction>
    <ExternalId>123456</ExternalId>
    <Customer>
      <Code>ZYN001</Code>
    </Customer>
    <TransactionCode>
      <Module>AR</Module>
      <Code>PM</Code>
    </TransactionCode>
    <Date>2021-10-15</Date>
    <Reference>O112719</Reference>
    <Reference2>123456</Reference2>
    <Amount>18.00</Amount>
  </CustomerTransaction>
</CustomerTransactions>