I_InspOperMatlSampleAggregate

DDL: I_INSPOPERMATLSAMPLEAGGREGATE SQL: IINSPOPMSMLAGGR Type: view COMPOSITE

Aggregation on insp op mat sample level

I_InspOperMatlSampleAggregate is a Composite CDS View that provides data about "Aggregation on insp op mat sample level" in SAP S/4HANA. It reads from 3 data sources (I_InspectionOperation, I_InspectionSubset, I_InspSubsetCharacteristic) and exposes 4 fields with key fields InspectionLot, InspPlanOperationInternalID, InspectionOperation, MaterialSample.

Data Sources (3)

SourceAliasJoin Type
I_InspectionOperation I_InspectionOperation from
I_InspectionSubset I_InspectionSubset inner
I_InspSubsetCharacteristic I_InspSubsetCharacteristic inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IINSPOPMSMLAGGR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Aggregation on insp op mat sample level view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot I_InspectionOperation InspectionLot Inspection Lot
KEY InspPlanOperationInternalID I_InspectionOperation InspPlanOperationInternalID Node Number
KEY InspectionOperation I_InspectionOperation InspectionOperation Operation
KEY MaterialSample I_InspectionSubset MaterialSample Sample

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 I_InspOperMatlSampleAggregate.
-- 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: IINSPOPMSMLAGGR

CREATE VIEW I_InspOperMatlSampleAggregate AS
SELECT
  I_InspectionOperation.InspectionLot AS InspectionLot,
  I_InspectionOperation.InspPlanOperationInternalID AS InspPlanOperationInternalID,
  I_InspectionOperation.InspectionOperation AS InspectionOperation,
  I_InspectionSubset.MaterialSample AS MaterialSample
FROM I_InspectionOperation
INNER JOIN I_InspectionSubset ON /* join condition not captured in parsed metadata */
INNER JOIN I_InspSubsetCharacteristic ON /* join condition not captured in parsed metadata */
;