P_InspSubsetValnAggregate

DDL: P_INSPSUBSETVALNAGGREGATE SQL: PSUBSETVALNAGGR Type: view CONSUMPTION

P_InspSubsetValnAggregate is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_InspectionSubset) and exposes 4 fields with key fields InspectionLot, InspPlanOperationInternalID.

Data Sources (1)

SourceAliasJoin Type
I_InspectionSubset I_InspectionSubset from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PSUBSETVALNAGGR view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot InspectionLot Inspection Lot
KEY InspPlanOperationInternalID InspPlanOperationInternalID Node Number
_InspectionLot _InspectionLot
_InspectionOperation _InspectionOperation

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 P_InspSubsetValnAggregate.
-- 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: PSUBSETVALNAGGR

CREATE VIEW P_InspSubsetValnAggregate AS
SELECT
  InspectionLot,
  InspPlanOperationInternalID
FROM I_InspectionSubset
;