Runs a predefined Crystal Reports report.
<cfreport report = "report_path" orderBy = "result_order" username = "username" password = "password" formula = "formula"> </cfreport>
cfcollection, cfexecute, cfgraph, cfindex, cfobject, cfsearch, cfservlet, cfwddx
<!--- This view-only example shows the use of cfreport --->
<html>
<head>
<title>cfreport Example</title>
</head>
<body>
<H3>cfreport Tag<H3>
<P>cfreport allows reports from the Crystal Reports Professional
report writer to be displayed through a ColdFusion interface.
The cfreport tag requires the name of the report to run;
cfreport can also pass information to the report
file being displayed to change the output conditions.
<P>This example would run a report called
"monthlysales.rpt " and pass it an optional filter condition to
show only the information for a certain subset of the report.
<cfreport report = '/reports/monthlysales.rpt'>
{Departments.Department} = 'International'
</cfreport>
<P>Substitute your own report files and filters for this code
and cfreport can place your existing Crystal Reports into web pages.
</body>
</html>