I_MRPPlanningPeriod

DDL: I_MRPPLANNINGPERIOD SQL: IPPMRPPLNGPERIOD Type: view BASIC

MRP Planning Period

I_MRPPlanningPeriod (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

MRP Planning Calendar · Manufacturing

I_MRPPlanningPeriod is a Basic CDS View (Dimension) that provides data about "MRP Planning Period" in SAP S/4HANA. It reads from 1 data source (t439g) and exposes 9 fields with key fields MRPPlant, MRPPlanningCalendar. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Material Requirements Planning
Data CategoryDIMENSION
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which MRP planning periods are maintained? What are the validity start dates and validity end dates of the MRP planning periods?

Structure
Main input parameters This view does not have any input parameters. Measures and attributes The following attributes are provided: MRP plant MRP planning calendar Validity start date Validity end date Creation date of planning period

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Search
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which MRP planning periods are maintained?</p></li> <li><p>What are the validity start dates and validity end dates of the MRP planning periods?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t439g per from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.MRPPlant = _Plant.Plant
[0..*] I_MRPPlanningPeriodText _Text $projection.MRPPlant = _Text.MRPPlant and $projection.MRPPlanningCalendar = _Text.MRPPlanningCalendar
[0..1] I_PlanningPeriodCalcRule _CalculationRule $projection.MRPPlanningCalendarCalcRule = _CalculationRule.PlanningPeriodCalculationRule

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPMRPPLNGPERIOD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MRPPlanningCalendar view
ObjectModel.sapObjectNodeType.name MRPPlanningCalendar view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label MRP Planning Period view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY MRPPlant t439g werks Receiving Plant
KEY MRPPlanningCalendar t439g mrppp Planning Calendar
MRPPlanningCalendarCalcRule t439g mrpps Calculation Rule
datuvasValidityStartDate
datubasValidityEndDate
CreationDate t439g erfdt Entry Date
_Plant _Plant
_CalculationRule _CalculationRule
_Text _Text

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_MRPPlanningPeriod.
-- 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: IPPMRPPLNGPERIOD

CREATE VIEW I_MRPPlanningPeriod AS
SELECT
  per.werks AS MRPPlant,
  per.mrppp AS MRPPlanningCalendar,
  per.mrpps AS MRPPlanningCalendarCalcRule,
  per.erfdt AS CreationDate
FROM t439g AS per
LEFT OUTER JOIN I_Plant AS _Plant ON MRPPlant = _Plant.Plant  -- association [1..1]
LEFT OUTER JOIN I_MRPPlanningPeriodText AS _Text ON MRPPlant = _Text.MRPPlant AND MRPPlanningCalendar = _Text.MRPPlanningCalendar  -- association [0..*]
LEFT OUTER JOIN I_PlanningPeriodCalcRule AS _CalculationRule ON MRPPlanningCalendarCalcRule = _CalculationRule.PlanningPeriodCalculationRule  -- association [0..1]
;