Id: | 19424 |
Product: | finPOWER Connect |
Type: | NEW |
Version: | 4.00.00 |
Opened: | 25/07/2022 |
Closed: | 08/08/2022 |
Released: | 21/12/2022 |
Job: | J029224 |
Credit Limit change; added Script events to handle additional processing requirements
The Account Credit Limit Change object has new script events to handle additional processing requirements.
A script of type "Object Events", object "AccountCreditLimitChange" should be created to handle Credit Limit change events. After a script has been created, it must be linked to an Account Type on the Scripts page, "CreditLimitChange" Event script.
The script can handle four events:
ExecuteCommitPre
Runs at the start of ExecuteCommit and can be used to validate and tweak values. Return False, with an error message, to cancel the Commit.
ExecuteCommitPreInTransaction
Runs during ExecuteCommit, after a Database Transaction has begun but before any work has started. It can be used much like the ExecuteCommitPre event.
ExecuteCommitPostInTransaction
Runs during ExecuteCommit, after work has been completed but before the Database Transaction is committed. Use to implement additional functionality that must be part of the overall Commit.
ExecuteCommitPost
Runs at the end of ExecuteCommit. Since the Database Transaction is complete use with caution. Any failure here will not affect the overall Commit. If it fails the ExecuteCommit function returns a warning and this is displayed in the wizard.
Note, in addition a new "Tag" property has been added to the finAccountCreditLimitChange object. This could be used to communicate extra information, especially from an HTML Widget, to the ExecuteCommit function.
The following HTML Widget template has been updated:
- HtmlWidget_AccountCreditLimitChange
- Version: 1.07 (08/08/2022)