I_TimeZoneText

DDL: I_TIMEZONETEXT SQL: ITIMEZONETEXT Type: view BASIC

Time Zone Text

I_TimeZoneText (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_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.

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
ttzzt ttzzt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_TimeZone _TimeZone $projection.TimeZoneID = _TimeZone.TimeZoneID
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TimeZoneID ttzzt tzone Time Zone Difference
KEY Language ttzzt langu Primary lang.
TimeZoneText ttzzt descript Time Zone Text
_TimeZone _TimeZone
_Language _Language

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_TimeZoneText.
-- 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: ITIMEZONETEXT

CREATE VIEW I_TimeZoneText AS
SELECT
  ttzzt.tzone AS TimeZoneID,
  ttzzt.langu AS Language,
  ttzzt.descript AS TimeZoneText
FROM ttzzt
LEFT OUTER JOIN I_TimeZone AS _TimeZone ON TimeZoneID = _TimeZone.TimeZoneID  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;