E_InspSubsetCharacteristic

DDL: E_INSPSUBSETCHARACTERISTIC SQL: EINSPSUBSETCHAR Type: view EXTENSION Package: VDM_QM_INSPECTION

Insp. Charc. for an Insp. Pt. Extension

E_InspSubsetCharacteristic is a Extension CDS View that provides data about "Insp. Charc. for an Insp. Pt. Extension" in SAP S/4HANA. It reads from 1 data source (qasv) and exposes 4 fields with key fields InspectionLot, InspPlanOperationInternalID, InspectionCharacteristic, InspectionSubsetInternalID. Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
qasv Persistence from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName EINSPSUBSETCHAR view
EndUserText.label Insp. Charc. for an Insp. Pt. Extension view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot prueflos Inspection Lot
KEY InspPlanOperationInternalID vorglfnr Node Number
KEY InspectionCharacteristic merknr Characteristic
KEY InspectionSubsetInternalID probenr Sample Number

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_InspSubsetCharacteristic.
-- 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: EINSPSUBSETCHAR

CREATE VIEW E_InspSubsetCharacteristic AS
SELECT
  prueflos AS InspectionLot,
  vorglfnr AS InspPlanOperationInternalID,
  merknr AS InspectionCharacteristic,
  probenr AS InspectionSubsetInternalID
FROM qasv AS Persistence
;