TTZR SAP (Time zone rules) Table details

Dictionary Type: Table
Description: Time zone rules




ABAP Code to SELECT data from TTZR
Related tables to TTZR
Access table TTZR




Table field list including key, data, relationships and ABAP select examples

TTZR is a standard SAP Table which is used to store Time zone rules data and is available within R/3 SAP systems depending on the version and release level.

The TTZR table consists of various fields, each holding specific information or linking keys about Time zone rules data available in SAP. These include ZONERULE (Time Zone Rule), UTCDIFF (Difference of time zone from UTC (w/o Summer time)), UTCSIGN (Sign of the Difference from UTC (+ or -)), FLAGACTIVE (Time zones active).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = TTZRT


SAP TTZR table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
CLIENTClient MANDTCLNT3T000MANDT
ZONERULETime Zone Rule TZNZONERULCHAR6TZNZONERUL
UTCDIFFDifference of time zone from UTC (w/o Summer time) TZNUTCDIFFTIMS6TZNTIMDIFF
UTCSIGNSign of the Difference from UTC (+ or -) TZNUTCSIGNCHAR1TZNSIGN
FLAGACTIVETime zones active TZNFLACTIVCHAR1FLAG

Key field Non-key field



How do I retrieve data from SAP table TTZR using ABAP code

The following ABAP code Example will allow you to do a basic selection on TTZR to SELECT all data from the table
DATA: WA_TTZR TYPE TTZR.

SELECT SINGLE *
FROM TTZR
INTO CORRESPONDING FIELDS OF WA_TTZR
WHERE...

How to access SAP table TTZR

Within an ECC or HANA version of SAP you can also view further information about TTZR and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!