Data

The Electronic Bank Payments SuiteApp uses the following data in payment file templates:

Data

Description

transHash

Hash containing transaction search results (sequence) as values with payment internal ID as keys

creditsHash

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:

Block diagram showing 2 payments, each with 2 mapped transactions.

Command

Transaction IDs for Payment #2 can be printed using the following command:

          <#list transHash["2"] as transaction> 
${‌transaction.tranid}
</#list> 

        

Output

Printed output of the previous code sample.

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:

Block diagram showing 2 payments, each with 2 mapped 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

Printed output of the previous code sample.

Related Topics

General Notices