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

C_Plngclndrcltsiztexttemp

DDL: C_PLNGCLNDRCLTSIZTEXTTEMP SQL: CPLNGCALTEXT Type: view CONSUMPTION

Planning calendar text

C_Plngclndrcltsiztexttemp is a Consumption CDS View that provides data about "Planning calendar text" in SAP S/4HANA. It reads from 1 data source (I_PlanningCalendarText) and exposes 7 fields with key fields CalendarTimeFrame, PlngCalendarPerdcLotSizing, PlanningCalendar, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_PlanningCalendarText I_PlanningCalendarText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] C_InvoiceDatesVHTemp _PlanningCalendar $projection.PlanningCalendar = _PlanningCalendar.FactoryCalendar
[0..1] C_Timestreamtemp _CalendarTimeFrame $projection.CalendarTimeFrame = _CalendarTimeFrame.CalendarTimeFrame

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPLNGCALTEXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_PlanningCalendarText view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PlngCalendarPerdcLotSizing view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Planning calendar text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CalendarTimeFrame CalendarTimeFrame TimeStreamType
KEY PlngCalendarPerdcLotSizing PlngCalendarPerdcLotSizing Per.LS Plng Cal
KEY PlanningCalendar PlanningCalendar FactoryCalendar
KEY Language Language Report Text Language
Name Name Zone name
_PlanningCalendar _PlanningCalendar
_CalendarTimeFrame _CalendarTimeFrame

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_Plngclndrcltsiztexttemp.
-- 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: CPLNGCALTEXT

CREATE VIEW C_Plngclndrcltsiztexttemp AS
SELECT
  CalendarTimeFrame,
  PlngCalendarPerdcLotSizing,
  PlanningCalendar,
  Language,
  Name
FROM I_PlanningCalendarText
LEFT OUTER JOIN C_InvoiceDatesVHTemp AS _PlanningCalendar ON PlanningCalendar = _PlanningCalendar.FactoryCalendar  -- association [0..1]
LEFT OUTER JOIN C_Timestreamtemp AS _CalendarTimeFrame ON CalendarTimeFrame = _CalendarTimeFrame.CalendarTimeFrame  -- association [0..1]
;