Skip to content

Exporting Inventory from Sage 50 UK

This task will export stock level information from Sage 50 in Zynk XML format.

Settings

Sage 50 Connection

Required
The connection to Sage 50 UK to use. See the Connecting to Sage 50 UK article if you require more information on how to create/manage connections.

Export Settings

Required

  • Date Modified - Only records modified after this date will be exported. The date will update automatically each time the task runs.
  • Export Modified, New or All Records - Used to choose which records should be included in the export. Note that the 'Modified' setting will also export any new records.

Query Settings

Optional

  • Columns - Allows you to specify additional columns to include in the export. Additional fields will be exported in the CustomFields section in the XML. Be sure to include the table name for each of the additional columns provided eg. [STOCK].[QTY_LAST_STOCK_TAKE]. If the table that the column you are trying to retrieve is not used by the standard export, you will need to add the table to Joins.
  • Joins - Allows data to be exported from other tables in the Sage database. Required when exporting data from tables not included in the standard export.
  • Where Clauses - Allows filters to be set to limit the data that is exported.

Query Timeout

Optional
The maximum amount of time (in seconds) the query should be allowed to run.

Output File

Required
The name of the file to export to. Data is exported in Zynk XML format

Zynk Settings

See Common Task Settings

Examples

Sample output file:

<?xml version="1.0" encoding="utf-8"?>
<Company
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Inventories>
    <Inventory>
      <UniqueId>TEST001</UniqueId>
      <Sku>TEST001</Sku>
      <SalesPrice>20</SalesPrice>
      <QtyInStock>1009</QtyInStock>
      <QtyAllocated>27</QtyAllocated>
      <QtyOnOrder>0</QtyOnOrder>
      <Locations />
    </Inventory>
  </Inventories>
</Company>