I_TimeZoneRule
Time Zone Rule
I_TimeZoneRule is a Basic CDS View (Dimension) that provides data about "Time Zone Rule" in SAP S/4HANA. It reads from 1 data source (ttzr) and exposes 5 fields with key field TimeZoneRule. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ttzr | ttzr | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TimeZoneRuleText | _TimeZoneRuleText | $projection.TimeZoneRule = _TimeZoneRuleText.TimeZoneRule |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | ITIMEZONERULE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| EndUserText.label | Time Zone Rule | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.representativeKey | TimeZoneRule | 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: 'ITIMEZONERULE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics : {dataCategory: #DIMENSION , dataExtraction.enabled : true}
@EndUserText.label: 'Time Zone Rule'
@Metadata.ignorePropagatedAnnotations:true
@Metadata.allowExtensions:true
@ObjectModel.representativeKey: 'TimeZoneRule'
@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_TimeZoneRule as select from ttzr
association [0..*] to I_TimeZoneRuleText as _TimeZoneRuleText
on $projection.TimeZoneRule = _TimeZoneRuleText.TimeZoneRule
{
@ObjectModel.text.association:'_TimeZoneRuleText'
key ttzr.zonerule as TimeZoneRule,
ttzr.utcdiff as UTCTimeZoneTimeDiff,
ttzr.utcsign as UTCDifferenceSign,
ttzr.flagactive as TimeZoneRuleIsActive,
_TimeZoneRuleText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TTZR"
],
"ASSOCIATED":
[
"I_TIMEZONERULETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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