exportReport()

The reportLib.exportReport() system function exports the filled report in the format you specify.

Syntax

  reportLib.exportReport(
    report Report in,
    format ExportFormat in)
report
The report being exported.
format
The format and file extension of the exported report. Use one of the following values of the ExportFormat enumeration:
csv
Comma-separated values; Microsoft Excel can display these files.
html
HTML format.
pdf
Adobe Acrobat PDF format.
text
ASCII plain text format.
xml
XML format.

Feedback