Data
The Electronic Bank Payments SuiteApp uses the following data in payment file templates:
Data |
Description |
---|---|
Hash containing transaction search results (sequence) as values with payment internal ID as keys |
|
Hash containing applied credits transaction query results (sequence) as values with payment internal ID as keys |
transHash
Hash containing transaction search results (sequence) as values with payment internal ID as keys
Example
Map of payments and transactions:

Command
Transaction IDs for Payment #2 can be printed using the following command:
<#list transHash["2"] as transaction>
${transaction.tranid}
</#list>
Output

creditsHash
Hash containing applied credits transaction query results (sequence) as values with payment internal ID as keys.
Example
Map of payments and applied credit transactions:

Command
Credit Transaction IDs for Payment #2 can be printed using the following command:
<#list creditsHash["2"] as credit_line>
${credit_line.tranid}
</#list>
Output

Related Topics