Insert excerpt | ||||||||
---|---|---|---|---|---|---|---|---|
|
By the end of this chapter you will be able to:
- Use the switch() function
- Use the forEach() function
Additional assistance can be found in Expression Basics.
Using switch() to apply multiple tests
Attribute Scripting
CRM
onto this model.SOURCE_BANK_ACCOUNT_TRANS,
right-click and select create a collector.TransactionTypeDesc
Expression: work out the transaction type description from TRANSACTION_TYPE
, using a switch()
statement, according to the rules below – Search the help and use the examples in the help for switch()
to get started.
switch(
, and the inline help will appear. At the bottom of this popup is a link to its help page.TRANSACTION_TYPE
Description
1
"Direct Debit"
2
"Standing Order"
3
"ePayment"
4
"Cheque"
Any other value
"Unknown"
Using forEach() to handle lists
- Create an aggregate table, with name
Bank Account Summary
- Add a pipe from the table you created in the previous exercise (this should be called
SOURCE_BANK_ACCOUNT_TRANS
) toBank Account Summary
- Add to the pipe the grouping:
ACCOUNT_NUM
- Drag the attribute
ACCOUNT_NUM
intoBank Account Summary
from either the pipe or the input table. - Add an attribute:
- Name:
TotalPosTrans
- Type: Float
- Expression: using a
forEach()
loop, add up the total of all the positive transactions, and store it in this attribute.
- Name:
- Run
Bank Account Summary
to test this new attribute. - When this is working, update
TotalPosTrans
to also calculate the total of negative transactions, and the total of all transactions – and hold them in local variables ($variables).- See Using Variables for additional assistance.
- Add two further attributes –
TotalNegTrans
andTotalTrans
- use these to store the values (in your local variables) of all negative transactions and all transactions that you calculated inTotalPosTrans
- Run
Bank Account Summary
again to test the new attributes.