I have been fiddling with a freemaker template for...
# advancedpdf
c
I have been fiddling with a freemaker template for the Electronic bank Payment app, but some of the examples that SuiteAnswers provides keep resulting with errors when I try to get down to the payment or transaction data. This one works no issue
Copy code
#OUTPUT START#
Legal Name:
**${cbank.custrecord_2663_legal_name}
Immediate Origin: **${cbank.custpage_eft_custrecord_2663_bank_comp_id}
Reference Note:
**${pfa.custrecord_2663_ref_note}
#OUTPUT END#
This one results in an EP_000013 error. This is a snippet directly from Suite Answers and it fails because it says payment.id is invalid, but even when I try to just get the payments or transactions it fails.
Copy code
<#OUTPUT START#>
<#list payments as payment>
Payment ID: ${‌payment.id}
   <#list transHash[payment.internalid] as transaction>
   Transaction ID: ${‌transaction.tranid}
   </#list>
</#list>
<#OUTPUT END#>