C_QualityLevelAnalysis

DDL: C_QUALITYLEVELANALYSIS Type: view CONSUMPTION

Quality Level History

C_QualityLevelAnalysis is a Consumption CDS View that provides data about "Quality Level History" in SAP S/4HANA. It reads from 1 data source (I_QualityLevelAnalysisCube) and exposes 35 fields. It is used in 1 Fiori application: Quality Level History.

Data Sources (1)

SourceAliasJoin Type
I_QualityLevelAnalysisCube I_QualityLevelAnalysisCube from

Parameters (5)

NameTypeDefault
hidden true
P_StartDate mm_a_delivery_date
hidden true
P_EndDate mm_a_delivery_date
P_DateFunction datefunctionid

Annotations (11)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName CQLTYLVLANALYZE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
Analytics.query true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Quality Level History view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
OData.publish true view
VDM.viewType #CONSUMPTION view

Fiori Apps (1)

App IDApp NameTypeDescription
F2915 Quality Level History Transactional An app to calculate the skip rate of inspection lots and inspection characteristics. You can also use this app to analyze quality levels.

Quality Level History

Business Role: Quality Engineer

With this feature, the skip rate of inspection lots and inspection characteristics is calculated. You can also use this app to analyze quality levels.

Fields (35)

KeyFieldSource TableSource FieldDescription
hiddentrueP_StartDatemm_a_delivery_date
P_StartDate
P_EndDateInspectionLot
Material Material Vehicle Model
Plant Plant Valuation Area
InspectionCharacteristic
InspectionSpecificationText InspectionSpecificationText
BillOfOperationsType BillOfOperationsType Task List Type
BillOfOperationsGroup BillOfOperationsGroup Group
BillOfOperationsVariant BillOfOperationsVariant Group Counter
Supplier Supplier Supplier
Customer Customer Sold-to Party
Manufacturer Manufacturer Manufacturer
InspectionLotType InspectionLotType Inspection Type
InspectionLotUsageDecisionCode InspectionLotUsageDecisionCode
InspLotDynamicRule InspLotDynamicRule
InspectionDynamicStage InspectionDynamicStage
IsInspectionLotSkippedText
InspectionLotCreatedOn InspectionLotCreatedOn
InspPlanOperationInternalID InspPlanOperationInternalID
InspectionLotDynamicLevel InspectionLotDynamicLevel
InspectionSeverity InspectionSeverity
InspectionLotCount
InspCharCount
InspectionLotIsSkipped
InspectionLotIsNotSkipped
InspCharcSkipCount
InspCharcNotSkipCount
InspectionNotSkippedCount
QualityLevelCount
InspectionSkipRate 1
CalendarYear CalendarYear Year
CalendarQuarter CalendarQuarter Calendar Quarter
CalendarMonth CalendarMonth Calendar Month
CalendarWeek CalendarWeek Calendar Week

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_QualityLevelAnalysis.
-- 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.
-- Parameters: hidden : true, P_StartDate : mm_a_delivery_date, hidden : true, P_EndDate : mm_a_delivery_date, P_DateFunction : datefunctionid

CREATE VIEW C_QualityLevelAnalysis AS
SELECT
  hidden: true AS hiddentrueP_StartDatemm_a_delivery_date,
  hidden: true AS P_StartDate,
  Material,
  Plant,
  cast(InspectionCharacteristic as vdm_qmerknrp ) AS InspectionCharacteristic,
  InspectionSpecificationText,
  BillOfOperationsType,
  BillOfOperationsGroup,
  BillOfOperationsVariant,
  Supplier,
  Customer,
  Manufacturer,
  InspectionLotType,
  InspectionLotUsageDecisionCode,
  InspLotDynamicRule,
  InspectionDynamicStage,
  cast( IsInspectionLotSkippedText as vdm_qinsplotisskipped preserving type ) AS IsInspectionLotSkippedText,
  InspectionLotCreatedOn,
  InspPlanOperationInternalID,
  InspectionLotDynamicLevel,
  InspectionSeverity,
  cast( InspectionLotCount as vdm_qinspectionlotcount preserving type ) AS InspectionLotCount,
  cast( InspCharCount as vdm_qinspcharccnt preserving type ) AS InspCharCount,
  cast( InspectionLotIsSkipped as vdm_qinsplotskipped preserving type ) AS InspectionLotIsSkipped,
  cast( InspectionLotIsNotSkipped as vdm_qinsplotnotskipped preserving type ) AS InspectionLotIsNotSkipped,
  cast( InspCharcSkipCount as vdm_qinspcharcskipcount preserving type ) AS InspCharcSkipCount,
  cast( InspCharcNotSkipCount as vdm_qinspcharcnskipcount preserving type ) AS InspCharcNotSkipCount,
  cast( InspectionNotSkippedCount as vdm_qminspnotskippedcount preserving type ) AS InspectionNotSkippedCount,
  cast( QualityLevelCount as vdm_qltylvlcnt preserving type ) AS QualityLevelCount,
  1 AS InspectionSkipRate,
  CalendarYear,
  CalendarQuarter,
  CalendarMonth,
  CalendarWeek
FROM I_QualityLevelAnalysisCube
;