E_QualityLevel

DDL: E_QUALITYLEVEL SQL: EQLTYLVL Type: view EXTENSION Package: VDM_QM_INSPECTION

Quality Level Extension

E_QualityLevel is a Extension CDS View that provides data about "Quality Level Extension" in SAP S/4HANA. It reads from 1 data source (qdql) and exposes 8 fields with key fields Plant, Material, BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant. Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
qdql Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName EQLTYLVL view
EndUserText.label Quality Level Extension view
ClientHandling.algorithm #AUTOMATED view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Plant werks Receiving Plant
KEY Material matnr Vehicle Model
KEY BillOfOperationsType plnty Task List Type
KEY BillOfOperationsGroup plnnr Task List Group
KEY BillOfOperationsVariant plnal Referenced BOO Variant
KEY BOOOperationInternalID plnkn Task list node
KEY Sequence plnfl Sequence
KEY QualityLevelInternalID zaehlerql Counter

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 E_QualityLevel.
-- 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.
-- SQL view name: EQLTYLVL

CREATE VIEW E_QualityLevel AS
SELECT
  werks AS Plant,
  matnr AS Material,
  plnty AS BillOfOperationsType,
  plnnr AS BillOfOperationsGroup,
  plnal AS BillOfOperationsVariant,
  plnkn AS BOOOperationInternalID,
  plnfl AS Sequence,
  zaehlerql AS QualityLevelInternalID
FROM qdql AS Persistence
;