I_SchedulingDateType
Scheduling Date Type
I_SchedulingDateType is a Basic CDS View that provides data about "Scheduling Date Type" in SAP S/4HANA. It reads from 1 data source (bps_actydtcode) and exposes 2 fields with key field SchedulingDateType. It has 1 association to related views. Part of development package BPS_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bps_actydtcode | SchedulingDateType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SchedulingDateTypeText | _Text | $projection.SchedulingDateType = _Text.SchedulingDateType |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Scheduling Date Type | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | SchedulingDateType | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SchedulingDateType | datetime_code | ||
| _Text | _Text |
@EndUserText.label: 'Scheduling Date Type'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel: {
representativeKey: 'SchedulingDateType',
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #ORGANIZATIONAL
}
}
define view entity I_SchedulingDateType
as select from bps_actydtcode as SchedulingDateType
association [0..*] to I_SchedulingDateTypeText as _Text on $projection.SchedulingDateType = _Text.SchedulingDateType
{
@ObjectModel.text.association: '_Text'
@Consumption.filter.hidden: true
@Semantics.text: true
key datetime_code as SchedulingDateType,
@Consumption.filter.hidden: true
_Text
}
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