Modify the main template file to include the information extracted from the Items
and Products
tables. This example shows how to insert a reference to the sub-table template.
To modify the main template file
template.tmpl
, in the connector's installation folder.Specify the location where data from the sub-tables should be included. To do this, insert an HTML comment (<!--comment-->
) where comment
is the name of the section in the configuration file that you specified in the SubTables
parameter. For example:
#DREREFERENCE <!--OrderID--> #DREFIELD Date="<!--Date-->" #DREFIELD CustomerID="<!--CustomerID-->" #DREFIELD Status="<!--Status-->" #DRECONTENT Order information Date Received: <!--Date--> Status: <!--Status--> Customer information <!--Customers--> Items <!--ItemDetails--> #DREENDDOC
|