Measurement Report Commands

:REPort:SAVE[:ALL] “PATH”

Syntax

::REPort:SAVE:ALL [<path>]

Description

Save all report pages to a pdf file

Parameter

Name

Type

Range

Default

<path>

String

A valid filename of the pdf file. If no absolute path is specified, the file is stored in the oxygen export folder.

A file starting with “report” and the current timestamp is generated in the oxygen export folder. All oxygen reports are stored.

Explanation

Save all possible oxygen reports to a pdf file. “ALL” is the preferred command of scpi group “REPort:SAVe” and does not have to be spelled out

Example

-> :REPort:SAVE:ALL           //stores all oxygen report pages to file (e.g. "c:/export/report_20230713_120948.pdf")
...
-> :REPort:SAVE               //same command as :REPort:SAVE:ALL
...
-> :REPort:SAVE:ALL "xyz"     //stores the current report to file (e.g. "c:/export/xyz.pdf")
...
-> :REPort:SAVE "c:/temp/xyz" //stores the current report to file "c:/temp/xyz.pdf"

:REPort:ITEM<PageNumber>:SAVE “PATH”

Syntax

::REPort:ITEM<PageNumber>:SAVE [<path>]

Description

Save a single report page to a pdf file

Parameter

Name

Type

Range

Default

<path>

String

A valid filename of the pdf file. If no absolute path is specified, the file is stored in the oxygen export folder

A file starting with “report” and the current timestamp is generated in the oxygen export folder

Explanation

Saves the oxygen report with the given <ReportNumber> to a pdf file. The <ReportNumber> should be a valid oxygen report (1 - 32768)

Example

-> :REPort:ITEM1:SAVE               //stores page number 1 to file (e.g. "c:/export/report_20230713_120948.pdf")
...
-> :REPort:ITEM2:SAVE "xyz"         //stores page number 2 to file (e.g. "c:/export/xyz.pdf")
...
-> :REPort:ITEM3:SAVE "c:/temp/xyz" //stores page number 3 to "c:/temp/xyz.pdf"