Article Details
| Id: | 15646 | 
| Product: | finPOWER Connect | 
| Type: | NEW | 
| Version: | 3.01.08 | 
| Opened: | 31/10/2018 | 
| Closed: | 31/10/2018 | 
| Released: | 13/12/2018 | 
| Job: | J021533 | 
Account Processes; add scriptable CustomWhere option
A new scriptable "CustomWhere" parameter has been added to Account Processes.
This can be used in an "AccountProcesses" script to filter the list of Accounts to Process further, for example to eliminate Accounts that you don't want to process.
Note, all other filters will also be applied.
An script sample (snippet) is shown below:
' Handle EventsSelect Case eventIdCase "AccountProcessesPre"' Account Processes is starting. Return False to abortAccountProcesses.CustomWhere = "Account.Ledger<>'Salvage'"End Select