Article Details
Id: | 21466 |
Product: | finPOWER Connect |
Type: | NEW |
Version: | 4.01.01 |
Opened: | 09/04/2024 |
Closed: | 20/05/2024 |
Released: | 24/06/2024 |
Job: | J033261 |
Business Layer; Account Application Log; Application Shortcut Updated to accept "AccountAppApplicantPk"
The Application Shortcut "Form Show" event for "Account Application Log" has been updated with an additional parameter "AccountAppApplicantPk". If the "AccountAppApplicantPk" is passed into the Application Shortcut, then the Applicant field will be defaulted to the passed value.Dim ApplicationShortcut As ISApplicationShortcut
ApplicationShortcut = finBL.CreateApplicationShortcutFormShow("AccountAppLog", Nothing, "General")
With ApplicationShortcut.Parameters
.SetString("AccountAppId", "1")
.SetInteger("AccountAppApplicantPk", 3)
End With
Main = finBL.ExecuteApplicationShortcut(ApplicationShortcut)