Modify the main template file so that information extracted from the sub-table is inserted into the document.
To modify the main template file
template.tmpl
.Specify the location where data from the sub-table is 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--> #DREENDDOC
|