Deprecated
This CDS view is deprecated in S/4HANA. Use I_MRPPLANNINGPERIOD instead. View all deprecated CDS views →

C_Plngcyctemp

DDL: C_PLNGCYCTEMP SQL: CPLNGCYC Type: view CONSUMPTION

Planning Period View

C_Plngcyctemp is a Consumption CDS View that provides data about "Planning Period View" in SAP S/4HANA. It reads from 1 data source (t439g) and exposes 4 fields with key fields PlanAndOrderDayDetermination, Plant. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t439g t439g from

Associations (2)

CardinalityTargetAliasCondition
[0..*] C_Plngcyctexttemp _Text $projection.PlanAndOrderDayDetermination = _Text.PlanAndOrderDayDetermination and $projection.Plant = _Text.Plant
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPLNGCYC view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_MRPPLANNINGPERIOD view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
ObjectModel.representativeKey PlanAndOrderDayDetermination view
EndUserText.label Planning Period View view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PlanAndOrderDayDetermination Planning cal.
KEY Plant werks Receiving Plant
_Plant _Plant
_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 C_Plngcyctemp.
-- 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: CPLNGCYC

CREATE VIEW C_Plngcyctemp AS
SELECT
  cast(mrppp as planandorderdaydetermination) AS PlanAndOrderDayDetermination,
  werks AS Plant
FROM t439g
LEFT OUTER JOIN C_Plngcyctexttemp AS _Text ON PlanAndOrderDayDetermination = _Text.PlanAndOrderDayDetermination AND Plant = _Text.Plant  -- association [0..*]
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
;