Defining Start and End Tags in Advanced Templates

The Electronic Bank Payments SuiteApp uses tags to determine the parts of an advanced template that must be inserted into the output payment file, and the parts that must return values after payment file creation.

Use the following tags in your custom template body:

          #OUTPUT START# 

        
          #OUTPUT END# 

        
          #RETURN START# 

        
          #RETURN END# 

        
          #REMOVE EOL# 

        

Example

In the following example, the string Outside and the return section containing Age are not included in the output.

The Electronic Bank Payments SuiteApp processes the return section after payment file creation. Currently, only sequenceId: is handled by the SuiteApp.

Template

          Outside
#OUTPUT START#
<#assign name = "John">
<#assign company = "NetSuite">
<#assign age = 100>
My name is ${name}
My company is ${company}
#OUTPUT END#
#RETURN START#
Age:${age}
#RETURN END# 

        

Output

Printed output of the previous code sample.

Related Topics

General Notices