I_WeekDayText
Week Day Text
I_WeekDayText is a Basic CDS View that provides data about "Week Day Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields WeekDay, Language. It has 2 associations to related views. It is exposed through 1 OData service (UI_MANAGEPAYMENTPLAN). Part of development package VDM_CAL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_WeekDay | _WeekDay | $projection.WeekDay = _WeekDay.WeekDay |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | WeekDay | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AbapCatalog.sqlViewName | IWEEKDAYTEXT | view | |
| EndUserText.label | Week Day Text | view | |
| Analytics.dataExtraction.enabled | false | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_MANAGEPAYMENTPLAN | UI_MANAGEPAYMENTPLAN_O2 | V2 | C1 | NOT_RELEASED |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WeekDay | |||
| KEY | Language | |||
| WeekDayName | dd07t | ddtext | ||
| _WeekDay | _WeekDay | |||
| _Language | _Language |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'WeekDay'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@AbapCatalog.sqlViewName: 'IWEEKDAYTEXT'
@EndUserText.label: 'Week Day Text'
@Analytics.dataExtraction.enabled: false
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations:true
define view I_WeekDayText
as select from dd07t
association [0..1] to I_WeekDay as _WeekDay on $projection.WeekDay = _WeekDay.WeekDay
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_WeekDay'
//key dd07t.domvalue_l as WeekDay,
key cast ( substring( dd07t.domvalue_l, 1, 1 ) as vdm_weekday ) as WeekDay,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key cast(ddlanguage as spras) as Language,
@Semantics.text
dd07t.ddtext as WeekDayName,
_WeekDay,
_Language
}
where
dd07t.domname = 'SC_WEEKDAY'
and dd07t.as4local = 'A'
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