Software AG Products 10.7 | Integrating On-Premises and Cloud Applications | DSPs and building output templates | Using Output Templates to Format Service Output | %comment%
 
%comment%
You use the %comment% tag to include remarks in your code. At run time, the server ignores all text (and tags) between the%comment% and %end% tag.
Syntax
%comment%
Block of Code
%end%
Effect on Scope
None
Examples
The following example contains a section of explanatory information.
%comment%
Use this template to generate an order list from any document containing
a purchased item number, quantity, description, and PO number
%end%
<tr>
<td>%value stockNum%</td>
<td>%value qty%</td>
<td>%value description%</td>
<td>%value orderNum%</td>
</tr>