Creating the Template
You can create the template as described in topic Creating the Template.
Viewing the Template
You can view the template by clicking the View button following Body Template.
Editing the Template
You can edit the template as described in topic Editing the Template.
Template Contents
A XML template normally contains a Start expression that controls which data rows are present in the resulting XML file.
<?xml version="1.0" encoding="UTF-8"?>
<records>
<<Start: Select(MyTable[MyKey], TRUE)>>
<record>
<FirstName><<[FirstName]>></FirstName>
<LastName><<[LastName]>></LastName>
<Age><<[Age]>></Age>
<Computed Total><<[Qty]*[Price]></Computed Total>
</record>
<<end>>
</records>