Versions Compared
Key
- This line was added.
- This line was removed.
- Formatting was changed.
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
- Create a new model
...
- ,
Attribute Scripting
- Drag the datasource
CRM
onto this model. - From the datasource
...
- hover menu use the
option to display all available tables.Insert excerpt _tableOnly _tableOnly nopanel true - Find the table
SOURCE_BANK_ACCOUNT_TRANS,
right-click and select create a
...
- collector
...
- .
- Create a
...
- table from this database collector
...
- , remember to use the
...
button in the hover menu so that theInsert excerpt _table_new _table_new nopanel true
...
- table attributes are automatically configured
...
- Press the button Image Removed in the repository browser – a list of all attribute functions available in PhixFlow will appear
- Double click on the entry for switch to bring up the help page
- .
- Add an attribute to this
...
- table to hold a description of the transaction type:
- Name:
TransactionTypeDesc
Expression: work out the transaction type description from
TRANSACTION_TYPE
, using aswitch()
statement, according to the rules below – Search the help and use the examples in the help forswitch()
to get started.- Type,
switch(
, and the inline help will appear. At the bottom of this popup is a link to its help page. TRANSACTION_TYPE
Description
Example Logic 1
"Direct Debit"
The logic being constructed will be, where the attribute TRANSACTION_TYPE is 1 set the value for the description to be "Direct Debit". 2
"Standing Order"
3
"ePayment"
4
"Cheque"
Any other value
"Unknown"
- Type,
- Name:
...
This will be the last value with no specified condition. If the value held in the attribute TRANSATION_TYPE is not cover in the logic above this will be the value set.
- Run the table and check that your translation of transaction type to transaction type description is correct.
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
- Name:
...
- () loop, add up the total of all the positive transactions, and store it in this attribute.
- Run
Bank Account Summary
to test this new attribute is populated Expand title Click here to see an example... // Here is a working example for adding up all the positive values
do(
// in.PAYMENT_AMOUNT contains a value for each record in the group
// Each value in a group is passed in one at a time using $amount
forEach( $amount, in.PAYMENT_AMOUNT,
// Check if the value is positive
if($amount > 0,
//Add the $amount to the $totalPositive for each value in in.PAYMENT_AMOUNT
$totalPositive = $totalPositive + $amount
)
),
// Value to be output
$totalPositive
)
- 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
...
By the end of this chapter you will be able to:
...
- .