<?xml version="1.0"?>
<appml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.refsnesdata.no/appml.xsd">
<title>PRODUCT SALES FOR 1997</title>
<database>
	<connection>northwind</connection>
</database>
<filters>
	<orderby>CategoryName,ProductName,ShippedQuarter</orderby>
	<query>
		<field>CategoryName</field>
		<label>Category Name</label>
	</query>
	<query>
		<field>ProductName</field>
		<label>Product Name</label>
	</query>
</filters>
<htmlreport>
<sql>
SELECT CategoryName,ProductName,ProductSales,ShippedQuarter
FROM [Product Sales for 1997]
</sql>
<break>
	<field>CategoryName</field>
	<section>C</section>
</break>

<section name="A">
<html><![CDATA[
<p><b>CATEGORY:</b> #categoryname#</p>
<table width="60%" border="1" cellpadding="1" cellspacing="1">
<tr>
<th width="40%">Product Name</th>
<th width="30%">Product Sales</th>
<th>Shipped Quarter</th>
</tr>
]]>
</html>
</section>

<section name="B" repeat="10000" movenext="yes">
<html><![CDATA[
<tr>
<td>#productname#</td>
<td>#productsales#</td>
<td>#shippedquarter#</td>
</tr>
]]>
</html>
</section>

<section name="C">
<html><![CDATA[</table><br />]]></html>
</section>
</htmlreport>
</appml>
