CAS 6


XML Export defaults to single file export with "Multiple Fiels" option.

The XML Export will not export all records to a single file. Original behavior was one file per record.

Sample Export

<?xml version="1.0" encoding="UTF-8"?>
<Loans>
  <Loan>
    <LOANID>0010322</LOANID>
    <MTDATE>20300601</MTDATE>
    <CURBAL>86432</CURBAL>
    <RATE>0</RATE>
    <Address>
      <CITY>HADDON HEIG</CITY>
      <STATE>PA</STATE>
      <Balances>
        <CURBAL>86432</CURBAL>
        <ORIGBAL>70200</ORIGBAL>
      </Balances>
    </Address>
  </Loan>
  <Loan>
    <LOANID>0011098</LOANID>
    <MTDATE>20300701</MTDATE>
    <CURBAL>66469.19</CURBAL>
    <RATE>0</RATE>
    <Address>
      <CITY>SARASOTA</CITY>
      <STATE>FL</STATE>
      <Balances>
        <CURBAL>66469.19</CURBAL>
        <ORIGBAL>68000</ORIGBAL>
      </Balances>
    </Address>
  </Loan>
</Loans>

One file per record can be achieved by selecting the new "Multiple Files" checkbox in the Settings tab.

Sample Export

<?xml version="1.0" encoding="UTF-8"?>
<Loans>
  <Loan>
    <LOANID>0010322</LOANID>
    <MTDATE>20300601</MTDATE>
    <CURBAL>86432</CURBAL>
    <RATE>0</RATE>
    <Address>
      <CITY>HADDON HEIG</CITY>
      <STATE>PA</STATE>
      <Balances>
        <CURBAL>86432</CURBAL>
        <ORIGBAL>70200</ORIGBAL>
      </Balances>
    </Address>
  </Loan>
</Loans>

Related to: XML Export Object