C_QualityControlTrackCalc

DDL: C_QUALITYCONTROLTRACKCALC Type: view_entity CONSUMPTION Package: ODATA_QM_INSPECTION_ANALYTICS

Calculation view for Qlty Control Chart

C_QualityControlTrackCalc is a Consumption CDS View that provides data about "Calculation view for Qlty Control Chart" in SAP S/4HANA. It reads from 1 data source (I_QualityControlChart) and exposes 12 fields with key field QualityControlChart. Part of development package ODATA_QM_INSPECTION_ANALYTICS.

Data Sources (1)

SourceAliasJoin Type
I_QualityControlChart _QualityControlChart from

Annotations (6)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label Calculation view for Qlty Control Chart view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY QualityControlChart I_QualityControlChart QualityControlChart Control Chart
CtrlChartProcessCapability
CtrlChartMeanProcessCapability
InspectionNonconformingRatio
InspectionPartialSampleSize
InspectionSampleSize
InspResultVariance
InspectionLotSum
Plant Plant Valuation Area
QltyCtrlChartAggrgnCriterion QltyCtrlChartAggrgnCriterion SPC Criterion
Supplier Supplier Supplier
_Supplier _Supplier

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_QualityControlTrackCalc.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_QualityControlTrackCalc AS
SELECT
  _QualityControlChart.QualityControlChart AS QualityControlChart,
  cast('' as qqrkcpc) AS CtrlChartProcessCapability,
  cast('' as qqrkcpkc) AS CtrlChartMeanProcessCapability,
  cast('' as qqrkpc) AS InspectionNonconformingRatio,
  cast(0 as qanzstipro) AS InspectionPartialSampleSize,
  cast(0 as qgesstpumf) AS InspectionSampleSize,
  cast(0 as qvarianz) AS InspResultVariance,
  cast ('1' as abap.int8) AS InspectionLotSum,
  Plant,
  QltyCtrlChartAggrgnCriterion,
  Supplier
FROM I_QualityControlChart AS _QualityControlChart
;