© 2025 IQVIA - All Rights Reserved
Interval Summary Data
Summary
These methods will provide the interval total net volume, pH, and/or specific gravity items into a form from the Samples > Intervals module upon saving.
IQVIA superadmin (support team) will need to ensure the Global Setting for the methods / advanced range checks global setting is updated to support the use of this method.
Formal Expression - Total Net Volume
var summary = {};
try {
summary = JSON.parse(getIntervalContainerSummaryData());
} catch (e) {
logger("error parsing summary JSON: " + e);
}
return summary.net_weight;
Formal Expression - pH
var summary = {};
try {
summary = JSON.parse(getIntervalContainerSummaryData());
} catch (e) {
logger("error parsing summary JSON: " + e);
}
return summary.ph;
Formal Expression - Specific Gravity
var summary = {};
try {
summary = JSON.parse(getIntervalContainerSummaryData());
} catch (e) {
logger("error parsing summary JSON: " + e);
}
return summary.specific_gravity;
Form Design
Add the required formal expressions to the CRF > Methods library
Select the method(s) for association with each item in your form design via item actions > edit
The interval summary information is associated with the interval stop date/time
Upon saving the Interval Stop form, the methods will fire and populate the items
Reporting
Transfer Data Report - vertical reporting
Exported and Printed Copies Are Uncontrolled