I_TimeZoneText
Time Zone Text
I_TimeZoneText is a Basic CDS View that provides data about "Time Zone Text" in SAP S/4HANA. It reads from 1 data source (ttzzt) and exposes 5 fields with key fields TimeZoneID, Language. It has 2 associations to related views. Part of development package SZTZ.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttzzt | ttzzt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_TimeZone | _TimeZone | $projection.TimeZoneID = _TimeZone.TimeZoneID |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | ITIMEZONETEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| EndUserText.label | Time Zone Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | TimeZoneID | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'ITIMEZONETEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics : {dataExtraction.enabled : true}
@EndUserText.label: 'Time Zone Text'
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'TimeZoneID'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define view I_TimeZoneText as select from ttzzt
association [0..1] to I_TimeZone as _TimeZone
on $projection.TimeZoneID = _TimeZone.TimeZoneID
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_TimeZone'
key ttzzt.tzone as TimeZoneID,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key ttzzt.langu as Language,
@Semantics.text
ttzzt.descript as TimeZoneText,
_TimeZone,
_Language
}
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