E_InspectionMethodVersion

DDL: E_INSPECTIONMETHODVERSION SQL: EINSPMETHODVERS Type: view EXTENSION

Inspection Method Version Extension

E_InspectionMethodVersion is a Extension CDS View that provides data about "Inspection Method Version Extension" in SAP S/4HANA. It reads from 1 data source (qmtb) and exposes 3 fields with key fields InspectionMethodPlant, InspectionMethod, InspectionMethodVersion.

Data Sources (1)

SourceAliasJoin Type
qmtb Persistence from

Annotations (7)

NameValueLevelField
EndUserText.label Inspection Method Version Extension view
AbapCatalog.sqlViewName EINSPMETHODVERS view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY InspectionMethodPlant werks Receiving Plant
KEY InspectionMethod pmtnr Insp. Method
KEY InspectionMethodVersion version XML Vers.

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_InspectionMethodVersion.
-- 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: EINSPMETHODVERS

CREATE VIEW E_InspectionMethodVersion AS
SELECT
  werks AS InspectionMethodPlant,
  pmtnr AS InspectionMethod,
  version AS InspectionMethodVersion
FROM qmtb AS Persistence
;