I_TimeZone

DDL: I_TIMEZONE SQL: ITIMEZONE Type: view BASIC

Time Zone

I_TimeZone (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Database & Data Management

I_TimeZone is a Basic CDS View (Dimension) that provides data about "Time Zone" in SAP S/4HANA. It reads from 1 data source (ttzz) and exposes 7 fields with key field TimeZoneID. It has 3 associations to related views. It is exposed through 1 OData service (UI_MANAGEPAYMENTPLAN).

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentBC-SRV-TIM-TZ
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
ttzz ttzz from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_TimeZoneText _TimeZoneText $projection.TimeZoneID = _TimeZoneText.TimeZoneID
[0..1] I_TimeZoneRule _TimeZoneRule $projection.TimeZoneRule = _TimeZoneRule.TimeZoneRule
[0..1] I_DaylightSavingRule _DaylightSavingRule $projection.DaylightSavingRule = _DaylightSavingRule.DaylightSavingRule

Annotations (17)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName ITIMEZONE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
EndUserText.label Time Zone view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true 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

OData Services (1)

ServiceBindingVersionContractRelease
UI_MANAGEPAYMENTPLAN UI_MANAGEPAYMENTPLAN_O2 V2 C1 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY TimeZoneID ttzz tzone Time Zone Difference
TimeZoneRule ttzz zonerule Time Zone Rule
DaylightSavingRule ttzz dstrule Daylight Saving Time Rule
TimeZoneIsActive ttzz flagactive Time zones active
_TimeZoneText _TimeZoneText
_TimeZoneRule _TimeZoneRule
_DaylightSavingRule _DaylightSavingRule

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_TimeZone.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ITIMEZONE

CREATE VIEW I_TimeZone AS
SELECT
  ttzz.tzone AS TimeZoneID,
  ttzz.zonerule AS TimeZoneRule,
  ttzz.dstrule AS DaylightSavingRule,
  ttzz.flagactive AS TimeZoneIsActive
FROM ttzz
LEFT OUTER JOIN I_TimeZoneText AS _TimeZoneText ON TimeZoneID = _TimeZoneText.TimeZoneID  -- association [0..*]
LEFT OUTER JOIN I_TimeZoneRule AS _TimeZoneRule ON TimeZoneRule = _TimeZoneRule.TimeZoneRule  -- association [0..1]
LEFT OUTER JOIN I_DaylightSavingRule AS _DaylightSavingRule ON DaylightSavingRule = _DaylightSavingRule.DaylightSavingRule  -- association [0..1]
;