I_DemandDrivenPlanningStatus

DDL: I_DEMANDDRIVENPLANNINGSTATUS Type: view_entity BASIC Package: ODATA_PP_DD_REPL

DDR Material Planning Action Status

I_DemandDrivenPlanningStatus is a Basic CDS View that provides data about "DDR Material Planning Action Status" in SAP S/4HANA. It reads from 1 data source (ppdd_rep_mrp_sts) and exposes 4 fields with key fields Material, Plant, UserID. Part of development package ODATA_PP_DD_REPL.

Data Sources (1)

SourceAliasJoin Type
ppdd_rep_mrp_sts ppdd_rep_mrp_sts from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label DDR Material Planning Action Status view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material material Vehicle Model
KEY Plant plant Valuation Area
KEY UserID username User who owns item
OrderPlanningStatusText mrpstatus MRP Status

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_DemandDrivenPlanningStatus.
-- 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 I_DemandDrivenPlanningStatus AS
SELECT
  Material,
  Plant,
  username AS UserID,
  mrpstatus AS OrderPlanningStatusText
FROM ppdd_rep_mrp_sts
;