I_SchedulingWorkingTimeText

DDL: I_SCHEDULINGWORKINGTIMETEXT Type: view_entity BASIC Package: BPS_VDM

Scheduling Working Time - Text

I_SchedulingWorkingTimeText is a Basic CDS View that provides data about "Scheduling Working Time - Text" in SAP S/4HANA. It reads from 1 data source (ttstrt) and exposes 7 fields with key fields Language, SchedulingWorkingTimeType, SchedulingWorkingTimeID, SchedulingCalendar. It has 3 associations to related views. Part of development package BPS_VDM.

Data Sources (1)

SourceAliasJoin Type
ttstrt ttstrt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_FactoryCalendar _PlanningCalendar $projection.SchedulingCalendar = _PlanningCalendar.FactoryCalendar
[0..1] I_TimeStream _CalendarTimeFrame $projection.SchedulingWorkingTimeType = _CalendarTimeFrame.CalendarTimeFrame
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Scheduling Working Time - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName ISCHDWTTEXT view
ObjectModel.representativeKey SchedulingWorkingTimeID view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language langkey Language
KEY SchedulingWorkingTimeType tstrtype TimeStreamType
KEY SchedulingWorkingTimeID tstreamid Time stream ID
KEY SchedulingCalendar calendarid FactoryCalendar
_Language _Language
_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 I_SchedulingWorkingTimeText.
-- 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_SchedulingWorkingTimeText AS
SELECT
  langkey AS Language,
  tstrtype AS SchedulingWorkingTimeType,
  tstreamid AS SchedulingWorkingTimeID,
  calendarid AS SchedulingCalendar
FROM ttstrt
LEFT OUTER JOIN I_FactoryCalendar AS _PlanningCalendar ON SchedulingCalendar = _PlanningCalendar.FactoryCalendar  -- association [0..1]
LEFT OUTER JOIN I_TimeStream AS _CalendarTimeFrame ON SchedulingWorkingTimeType = _CalendarTimeFrame.CalendarTimeFrame  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;