Skip to main content

system.kanoa.quality.analysis.getContinuousChartData(masterChkShtId, chkItemPath, startDate, endDate, )

Wraps qds.spGetContinuousChartData - one row per event for a single continuous check item (individuals/xbar/xbar_s/pre_control), carrying the configured spec/control limits (lcl/ldl/lel/lsl/tgt/ucl/udl/uel/usl) alongside each reading.


Parameters

masterChkShtId Integer
chkItemPath String: a single check item path
startDate DateTime
endDate DateTime
**** ``


Returns

data pyDataset columns chkShtEventId, takenDate, scheduledDate, chkItemValue, lcl, ldl, lel, lsl, tgt, ucl, udl, uel, usl


Example

startDate = system.date.parse("2026-08-01 00:00:00")
endDate = system.date.parse("2026-08-03 00:00:00")
masterChkShtId = 45
defectItemPath = 'Main\Motor Amps'
data = system.kanoa.quality.analysis.getContinuousChartData(masterChkShtId, chkItemPath, startDate, endDate)