Article Details
| Id: | 14457 |
| Product: | finPOWER Connect |
| Type: | NEW |
| Version: | 3.00.05 |
| Opened: | 27/03/2017 |
| Closed: | 27/03/2017 |
| Released: | 10/04/2017 |
| Job: | J018803 |
Account Statements; new Business Layer functions to manually generate a Statement for an Account
A new finPOWER Connect Business Layer function has been added to create a finAccountStatement object. This means you can now manually generate a Statement for an Account.
Note, in addition, the AccountLoad function supports setting an overridding "Statement To" date.
Example code is shown below:
Dim AccountStatement As finAccountStatementAccountStatement = finBL.CreateAccountStatement()If AccountStatement.AccountLoad(accountId, overridingDateStatementTo)Main = AccountStatement.ExecuteCommit()ElseMain = FalseEnd If