Id: | 14075 |
Product: | finPOWER Connect |
Type: | NEW |
Version: | 3.00.02 |
Opened: | 02/09/2016 |
Closed: | 05/09/2016 |
Released: | 07/10/2016 |
Job: | J017998 |
![]() |
Account Close; updated how Close Log/ Settlement Summary document work
The Account Close Log/ Settlement Summary document have been updated as follows:
Changes to the Account Close wizard"Summary" button now creates an Account Log when clicked. The Settlement Summary Document uses this Log to print information from.
The Commit now creates an Account Log if the Settlement Summary is to be printed. Previously the Account Log was only created if the Global Setting, Audit option was checked.
Changes to the Account Log form, "Account Close" page"Print" button above Summary page removed. Instead a button has been included in the Summary Page to print the Closing Summary.
Note, this is a breaking change. This means that when printed from the Log Summary Page a customised Word VBA Document may fail. This is because the Log Pk, rather than the Log object, is passed into the Document.
To correct this issue, add the following code at the beginning of the Word VBA document, after the "Get Variables" block:
' Load Log (if necessary)
If mLog Is Nothing And mAccountClose Is Nothing Then
LogPk = mParameters.GetObject("LogPk")
If LogPk <> 0 Then
Set mLog = mfinBL.CreateAccountLog
If Not mLog.Load(LogPk) Then
mLog = Nothing
End If
End If
End If
The following Word VBA Document Template was updated:
"Account_SettlementSummary.dot" updated to version 1.14 on 2/09/2016.