Article Details
Id:18662
Product:finPOWER Connect
Type:NEW
Version:3.04.02
Opened:07/10/2021
Closed:08/10/2021
Released:02/12/2021
Job: J027531

illion BankStatements; New simplified Business Layer properties added

The illion BankStatements Business Layer objects ISBankAccountEnquiryResponse_BankStatements_DownloadData and ISBankAccountEnquiryResponse_BankStatements_BrokerFlow have new simplified properties added will return the following data irrespective of which version of the data has been returned:

  • Accounts
  • CentrelinkData
  • DecisionMetrics

The following code:

  Select Case ResponseResult.ProductVersion 
    Case "1.00"
      Accounts = ResponseResult.Accounts

    Case "20170401"
      Accounts = ResponseResult.ProvisoReport.Accounts
      DecisionMetrics = ResponseResult.ProvisoReport.DecisionMetrics
      CentrelinkData = ResponseResult.ProvisoReport.CentrelinkData

  End Select

Can be replaced by:

  Accounts = ResponseResult.Accounts
  CentrelinkData = ResponseResult.CentrelinkData
  DecisionMetrics = ResponseResult.ProvisoReport.DecisionMetrics

NOTE: Properties will return Nothing if the Data Version does not support the function.

The following built-in Summary Page has been updated:

  • SummaryPage2_BankAccountEnquiryReport_BankStatements
    • Version: 2.18 (07/10/2021)