P_DDMRPChartHorizon

DDL: P_DDMRPCHARTHORIZON Type: view_entity COMPOSITE Package: PPH_DD_VDM_STLM

Demand Driven MRP Chart Horizon

P_DDMRPChartHorizon is a Composite CDS View that provides data about "Demand Driven MRP Chart Horizon" in SAP S/4HANA. It reads from 2 data sources (P_ChartHorizon, P_DDMRPDLTHorizon) and exposes 6 fields with key fields Material, Plant, MRPArea, CalendarDate. Part of development package PPH_DD_VDM_STLM.

Data Sources (2)

SourceAliasJoin Type
P_ChartHorizon _ChartHorzBase from
P_DDMRPDLTHorizon _DLTHorizon left_outer

Annotations (4)

NameValueLevelField
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Demand Driven MRP Chart Horizon view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material P_DDMRPDLTHorizon Material Vehicle Model
KEY Plant P_DDMRPDLTHorizon Plant Valuation Area
KEY MRPArea P_DDMRPDLTHorizon MRPArea MRP Area
KEY CalendarDate P_ChartHorizon CalendarDate Calendar Date
HorizonStartDate P_DDMRPDLTHorizon HorizonStartDate
HorizonEndDate P_DDMRPDLTHorizon HorizonEndDate

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_DDMRPChartHorizon.
-- 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.

CREATE VIEW P_DDMRPChartHorizon AS
SELECT
  _DLTHorizon.Material AS Material,
  _DLTHorizon.Plant AS Plant,
  _DLTHorizon.MRPArea AS MRPArea,
  _ChartHorzBase.CalendarDate AS CalendarDate,
  _DLTHorizon.HorizonStartDate AS HorizonStartDate,
  _DLTHorizon.HorizonEndDate AS HorizonEndDate
FROM P_ChartHorizon AS _ChartHorzBase
LEFT OUTER JOIN P_DDMRPDLTHorizon AS _DLTHorizon ON /* join condition not captured in parsed metadata */
;