TTZRT

Transparent Table Control Table (SAP+Cust)

Time zone rule texts

TTZRT is an SAP database table in S/4HANA. Time zone rule texts. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_TimeZoneRuleText view from BASIC Time Zone Rule Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY language LANGU Language
KEY zonerule TZNZONERUL Time Zone Rule
descript TZNDESCTZR Diff. from UTC

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Time zone rule texts
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TTZRT (
    CLIENT,    -- Client [MANDT]
    LANGUAGE,  -- Language [LANGU]
    ZONERULE,  -- Time Zone Rule [TZNZONERUL]
    DESCRIPT,  -- Diff. from UTC [TZNDESCTZR]
    PRIMARY KEY (CLIENT, LANGUAGE, ZONERULE)
);