Exporting Vendors from Sage 50 CA
This task will export vendor information from Sage to an XML file.
Settings
Sage 50 CA Connection
Required
Select a Sage 50 CA connection to use. See the Connecting to Sage 50 CA article if you require more information on how to create/manage connections.
Export Settings
Required
Used to determine whether new, modified or all records will be exported from Sage.
- Date Modified - When the task is set to export modified records, 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. The following options are available:
Modified
,New
,All
. Please note that theModified
setting will also export any new records.
Filters
Optional
This setting allows you to configure a series of where clauses that will be applied to the exported from Sage. Only records that meet the conditions specified will appear in the output file. The settings for each where clause are as follows:
- Comparison - The comparison to perform between the value specified in the where clause and the value of the field in Sage. The following options are available:
Equals
,NotEquals
,Like
,NotLike
,GreaterThan
,GreaterOrEquals
,LessThan
,LessOrEquals
,In
,NotIn
,Between
,NotBetween
. - Field Name - The database name of the field, e.g.
tCustomr.sName
. - Literal Value - Set to true to use the value exactly as specified, or false to apply automatic formatting to it.
- Logic Operator - Choose whether to combine this clause with others via an
AND
orOR
operation. - Sub Clauses - Optionally provide further sub where clauses.
- Value - The value to search for.
- Value To - Used in conjunction with the
Between
andNotBetween
comparisons, to specify the second value.
Page Size
Required
The maximum number of records to read from Sage in each batch. Increasing this may speed up the export, but will consume more memory. Defaults to 100.
Output File
Required
The name of the file to output the exported records to. The data must will be in XML format, a sample of which is shown below.
Zynk Settings
Examples
Sample output file:
<?xml version="1.0" encoding="utf-8"?>
<Vendors xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Vendor>
<ExternalId>123</ExternalId>
<Name>Zynk Software</Name>
<CurrencyCode>CAD</CurrencyCode>
<Contact>John Smith</Contact>
<Street1>i6</Street1>
<Street2>6-8 Charlotte Square</Street2>
<City>Newcastle</City>
<Province>Tyne & Wear</Province>
<PostalCode>NE1 4XF</PostalCode>
<Country>Great Britain</Country>
<Phone1>0191 820 1484</Phone1>
<Phone2>0191 820 1484</Phone2>
<Fax>0191 820 1484</Fax>
<Email>[email protected]</Email>
<Website>www.zynk.com</Website>
</Vendor>
</Vendors>