I_SchedulingWorkingTime
Scheduling Working Time
I_SchedulingWorkingTime is a Basic CDS View that provides data about "Scheduling Working Time" in SAP S/4HANA. It reads from 1 data source (ttstr) and exposes 4 fields with key fields SchedulingWorkingTimeType, SchedulingWorkingTimeID, SchedulingCalendar. It has 1 association to related views. Part of development package BPS_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttstr | ttstr | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SchedulingWorkingTimeText | _Text | $projection.SchedulingWorkingTimeType = _Text.SchedulingWorkingTimeType and $projection.SchedulingWorkingTimeID = _Text.SchedulingWorkingTimeID and $projection.SchedulingCalendar = _Text.SchedulingCalendar |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Scheduling Working Time | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | SchedulingWorkingTimeID | view | |
| Analytics.technicalName | ISCHDWT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SchedulingWorkingTimeType | tstrtype | ||
| KEY | SchedulingWorkingTimeID | tstreamid | ||
| KEY | SchedulingCalendar | calendarid | ||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Scheduling Working Time'
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'SchedulingWorkingTimeID'
@Analytics.technicalName: 'ISCHDWT'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define root view entity I_SchedulingWorkingTime
as select from ttstr
association [0..*] to I_SchedulingWorkingTimeText as _Text on $projection.SchedulingWorkingTimeType = _Text.SchedulingWorkingTimeType
and $projection.SchedulingWorkingTimeID = _Text.SchedulingWorkingTimeID
and $projection.SchedulingCalendar = _Text.SchedulingCalendar
{
@ObjectModel.text.association: '_Text'
key tstrtype as SchedulingWorkingTimeType,
key tstreamid as SchedulingWorkingTimeID,
key calendarid as SchedulingCalendar,
_Text
}
where
(
tstrtype = 'TS'
and tbgen = 'TTSTRSD'
)
or fbgen = '/SAPAPO/TIMESTREAM_COMPILE'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA