E_InspectionResultValue

DDL: E_INSPECTIONRESULTVALUE SQL: EINSPRESULTVALUE Type: view EXTENSION

Single Value of an Inspection Charc Rslt Extension

E_InspectionResultValue is a Extension CDS View that provides data about "Single Value of an Inspection Charc Rslt Extension" in SAP S/4HANA. It reads from 1 data source (qase) and exposes 4 fields with key fields InspectionLot, InspPlanOperationInternalID, InspectionCharacteristic, InspResultValueInternalID.

Data Sources (1)

SourceAliasJoin Type
qase Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName EINSPRESULTVALUE view
ClientHandling.algorithm #AUTOMATED view
EndUserText.label Single Value of an Inspection Charc Rslt 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 InspResultValueInternalID detailerg Indiv. result

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_InspectionResultValue.
-- 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: EINSPRESULTVALUE

CREATE VIEW E_InspectionResultValue AS
SELECT
  prueflos AS InspectionLot,
  vorglfnr AS InspPlanOperationInternalID,
  merknr AS InspectionCharacteristic,
  detailerg AS InspResultValueInternalID
FROM qase AS Persistence
;