reportdef/report

Description

A required element. Determines the look and feel of the final report output, incorporating all the data and formats laid out in the preceding elements and attributes.

Diagram

media/image40.jpeg

Child Elements

frame, layout

Example

<queries>
	<query datasource="" name="Query0" result-type="multiple-rows" type="iquery">
		<subjectArea name="Tender Daily Total">
			<columns>
				<column name="rvc" />
				<column name="tndrName" />
				<column name="tndrCnt" aggregate="sum" />
			</columns>
			<orders>
				<order name="rvc" direction="ASC" />
			</orders>
		</subjectArea>
	</query>
</queries>
<parameters>
...
</parameters>
<report>
	<frame type="table" name="tmbrvc" query-name="Query0">
		<bands>
			<band type="table-column-header">
				<cell type="text" alignment="left" print-width="81" data-format="text">Revenue Center</cell>
				<cell type="text" alignment="left" print-width="81" data-format="text">Tender Name</cell>
				<cell type="text" alignment="left" print-width="81" data-format="text">Tender Count</cell>
			</band>
			<band type="table-body">
				<cell type="column" alignment="left" print-width="81" data-format="text">rvc</cell>
				<cell type="column" alignment="left" print-width="81" data-format="text">tndrName</cell>
				<cell type="column" alignment="right" print-width="81" data-format="integer">tndrCnt</cell>
			</band>
		</bands>
	</frame>
	...
</report>