:MEASure:OSCilloscope:PERiod:STATus:DETails?

Meas. mode:
Scope
Package License:
L-RND
L-MFG
Waveform type:
NRZ
Flex Apps:
FlexDCA
FlexRT

Query Syntax

:MEASure:OSCilloscope:PERiod:STATus:DETails?

Description

Returns a string that may provide additional details for a failed :OSCilloscope:PERiod measurement. If the measurement was successful, a null string is returned.

For a basic description of a measurement failure, use the :STATus:REASon? sibling query. Use the :STATus? parent query to determine if the measurement has failed.

Measurement Identification

Avoid subtle programming errors! To ensure that the correct measurement is installed or queried, always explicitly identify a measurement when installing a measurement or querying a measured value, status, or detail. To identify a measurement, specify the measurement's source waveform (:SOURce child command). With some measurements, you may also need to specify other identifying values. Generally, when selecting a measurement using FlexDCA's GUI, if a dialog appears prompting you to select values, you should explicitly specify these values when remotely identifying the measurement. More information.

For example, to return the status of the measurement, :MEASure:OSCilloscope:PERiod:

flex.write(':MEASure:OSCilloscope:PERiod:SOURce CHAN1A')
if flex.query(':MEASure:OSCilloscope:PERiod:STATus?') == 'CORR';
    measurement = flex.query(':MEASure:OSCilloscope:PERiod?')
else:
	details = flex.query(':MEASure:OSCilloscope:PERiod:STATus:DETails?')
	reason = flex.query(':MEASure:OSCilloscope:PERiod:STATus:REASon?')