Skip to content

Exporting Receipts from Sage 50 CA

This task will export receipt 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 Prices

Required
Set to true to include payments made directly against the sales invoice in the export.

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 the Modified 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 or OR operation.
  • Sub Clauses - Optionally provide further sub where clauses.
  • Value - The value to search for.
  • Value To - Used in conjunction with the Between and NotBetween 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

See Common Task Settings

Examples

Sample output file:

<?xml version="1.0" encoding="utf-8"?>
<Receipts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Receipt>
    <Id>2</Id>
    <ReceiptNo>386</ReceiptNo>
    <JournalModuleType>Receipts</JournalModuleType>
    <PaidBy>Cheque</PaidBy>
    <DepositTo>10600</DepositTo>
    <Cheque>222</Cheque>
    <From>Bayswater School Board</From>
    <Address>
      <Address1>Hugo C. Lamore</Address1>
      <Address2>2 Seaside Drive</Address2>
      <Address3>Bayswater, British Columbia V9A 1R6</Address3>
      <Address4 />
      <Address5 />
    </Address>
    <Date>2023-08-30T00:00:00</Date>
    <Amount>5493</Amount>
    <CurrencyCode>CAD</CurrencyCode>
    <Lines>
      <Line>
        <InvoiceDate>2023-08-06T00:00:00</InvoiceDate>
        <InvoiceNumber>17786</InvoiceNumber>
        <OriginalAmount>1237.12</OriginalAmount>
        <AmountOwing>1237.12</AmountOwing>
        <DiscountAvailable>24.74</DiscountAvailable>
        <DiscountTaken>24.74</DiscountTaken>
        <AmountReceived>0</AmountReceived>
      </Line>
      <Line>
        <InvoiceDate>2023-07-23T00:00:00</InvoiceDate>
        <InvoiceNumber>17781</InvoiceNumber>
        <OriginalAmount>5493</OriginalAmount>
        <AmountOwing>5493</AmountOwing>
        <DiscountAvailable xsi:nil="true" />
        <DiscountTaken xsi:nil="true" />
        <AmountReceived>5493</AmountReceived>
      </Line>
    </Lines>
    <Comment>Payment received, thank you!</Comments>
  </Receipt>
  <Receipt>
    <Id>1</Id>
    <ReceiptNo>17784</ReceiptNo> <!-- The invoice number can be seen here for payments made directly against an invoice -->
    <JournalModuleType>Sales</JournalModuleType> <!-- 'Sales' indicates a payment made directly against an invoice -->
    <PaidBy>Cheque</PaidBy>
    <DepositTo />
    <Cheque>989</Cheque>
    <From>Construction Concrete Corp</From>
    <Address>
      <Address1>Chris Eberhardt</Address1>
      <Address2>8940 Burrard</Address2>
      <Address3>Vancouver, British Columbia</Address3>
      <Address4>V9E 2L8</Address4>
      <Address5 />
    </Address>
    <Date>2023-08-20T00:00:00</Date>
    <Amount>21000</Amount>
    <CurrencyCode>CAD</CurrencyCode>
    <Lines /> <!-- Payments made directly against an invoice won't show any lines -->
    <Comment />
  </Receipt>
</Receipts>