Building a condition with the Condition Builder
The Condition Builder has three columns. You can add more than one condition on the Condition Builder. If you select Match All, all the conditions must be met. If you select Match Any, any one of the conditions must be met.
You must be familiar with the database structure of the business class and the values that exist (if you are going to use literal values)
Build conditions as follows:
Guidelines for bank line statement custom groups
-
The rules to group bank line statements can be very complex. They are likely to require careful planning.
-
The objective is to pull together like transactions that can be assigned to the same category. For example, you might want to assign all credit card transactions to the same category. That means identifying all the ways in which credit card transactions are referred to on your bank statement and creating a custom group that will pull bank statement lines that include that any these descriptions. Because the strings that you are looking for are only a subset of the entire statement line, you must use a "like" operator and surround each string with a wildcard character (*). See the example below:
(DebitCreditIndicator = DebitCreditIndicator.Credit and (Description like "*MERCHANTBNKCDDEPOSIT*" or Description like "*BANKCARDDEPOSIT*" or Description like "*NOVUS*" or Description like "*FNBO*" or Description like "*GLOBALPAY*" or Description like "*GLOBALPAYGLOBALDEP*" or Description like "*DISCOVERNETWORKSETTLEMENT*" or Description like "*DISCOVERBUSSVCSETTLEMENT*" or Description like "*AMERICANEXPRESS*" or Description like "*AMERICANEXPRESSSETTLEMENT*" or Description like "*DEPOSITCAPTUREBANKCARD*" or Description like "*DEPOSIT/SETTLEBANKCARD*" or Description like "*NPC*" or Description like "*CTSHOLDINGS*" or Description like "*BANKCARDSERVICEEDCDEP*" or Description like "*BANKCARDBTOTDEP*" or Description like "*NPCMERCHPYMTPROC*" or Description like "*BANKCARDMTOTDEP*" or Description like "*SHOWMASTERCARDMTOTDEP*" or Description like "*IATSPAYMENTS*") and DescriptionMatchesIdentifier)