Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlExportOutputView

axlExportOutputView( 
t_sessionName 
t_fileName 
t_viewType 
[ ?history g_historyName ]
[ ?testName g_testName ]
[ ?filterName t_filterName ]
[ ?clearAllFilters g_clearAllFilters]
)
=> t / nil 

Description

Exports the results view to the specified .csv or .html file.

Arguments

t_sessionName

Name of the ADE Assembler or ADE Explorer session.

Default value: current session

t_fileName

Path and name of the file to which results are to be exported.

t_viewType

Name of the output view to be exported.

Valid values are:

  • "Detail"
  • "Detail - Transpose"
  • "Status"
  • "Summary"
  • "Yield"
  • "Checks/Asserts"
  • "Fault"
  • "Current"

Default value: "Current"

?history g_historyName

Name of the history for which outputs are to be exported.

Default value: " "

?testName g_testName

Name of the test for which outputs are to be exported. This argument is useful when you are exporting results from a multi-test cellview.

This argument is supported only for the Checks/Asserts and Fault result views.

?filterName t_filterName

Name of a saved filter to be applied while exporting the results.

?clearAllFilters g_clearAllFilters

A Boolean value that specifies whether or not to clear the filters before exporting outputs.

Value Returned

t

The output view is successfully exported to the specified file.

nil

The command could not be run.

Examples

The following examples export the results view to the specified .csv and .html files.

axlExportOutputView(axlGetWindowSession() "./abc.csv" "Yield")
=> t
axlExportOutputView(axlGetWindowSession() "./abc.html" "Detail-Transpose")
=> t
axlExportOutputView(axlGetWindowSession() "./abcd.html" "Yield" ?history "Interactive.20")
=> t

Related Topics

Exporting Outputs to a CSV File


Return to top
 ⠀
X