P_SlowMoMatBOMPlantSum

DDL: P_SLOWMOMATBOMPLANTSUM SQL: PSLOWNOMOBOMPSUM Type: view COMPOSITE

P_SlowMoMatBOMPlantSum is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_SlowMoMatBOMPlant) and exposes 3 fields with key fields Material, Plant.

Data Sources (1)

SourceAliasJoin Type
P_SlowMoMatBOMPlant P_SlowMoMatBOMPlant from

Parameters (1)

NameTypeDefault
P_KeyDate calendardate

Annotations (10)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PSLOWNOMOBOMPSUM view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
NumberOfBom

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_SlowMoMatBOMPlantSum.
-- 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: PSLOWNOMOBOMPSUM
-- Parameters: P_KeyDate : calendardate

CREATE VIEW P_SlowMoMatBOMPlantSum AS
SELECT
  Material,
  Plant,
  sum(Counter) AS NumberOfBom
FROM P_SlowMoMatBOMPlant
;