Write_report_panel, Usage, Options – Altera Quartus II Scripting User Manual
Page 398: Description, Example, Write_report_panel –268

3–268
Chapter 3: Tcl Packages & Commands
report
Quartus II Scripting Reference Manual
© July 2013
Altera Corporation
write_report_panel
Usage
write_report_panel -file
Options
-file
-html: Option to generate output file in HTML format
-id
-name
-xml: Option to generate output file in XML format
Description
Writes data from the specified report panel to the specified output file. If the "-html" option is specified, the
output file is generated in HTML format. If the "-xml" option is specified, the output file is generated in
XML format. Otherwise, the output file is generated in ASCII format.
Using the panel id provides faster data access than using the panel name.
Panel ids that you have cached may become outdated or invalid if the report is unloaded or reloaded. This
error occurs after compilation or with calls to the "project_close", "unload_report", and "load_report"
commands.
Panel names support wildcards.
The table of contents portion of the Compilation Report window shows short panel names for better
readability. However, the panel name used by this command is the full panel name as shown in the
right-hand side frame of the Compilation Report window or the .rpt file of the corresponding
command-line executable. For example, the table of contents shows the path "Analysis &
Synthesis||Summary". However, the corresponding full path used by this Tcl command is "Analysis &
Synthesis||Analysis & Synthesis Summary".
Example
## Load report database and write Timing Analyzer Summary
## panel to file in HTML format
load_package report
project_open chiptrip
load_report
# Set panel name and id
set panel "*Timing Analyzer Summary"
set id [get_report_panel_id $panel]
# If the specified panel exists, write it to
# fmax.htm and fmax.xml.
# Otherwise, print out an error message
if {$id != -1} {
write_report_panel -file fmax.htm -html -id $id
write_report_panel -file fmax.xml -xml -id $id
} else {
puts "Error: report panel could not be found."
}