TIMECUUTT

Transparent Table Control Table (SAP+Cust)

Texts for Time Unit

TIMECUUTT is an SAP database table in S/4HANA. Texts for Time Unit. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SrvcDocDurationUnitText view from BASIC Service Transaction Duration Unit - Text

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY unit_name TIMEUNITNA Time Unit
KEY langu SPRAS Language
text TIMEUNITT Singular
text_pl TIMEUNITTP Plural
abbrev TIMEUNITAV Abbreviation

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.

-- Texts for Time Unit
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TIMECUUTT (
    CLIENT,     -- Client [MANDT]
    UNIT_NAME,  -- Time Unit [TIMEUNITNA]
    LANGU,      -- Language [SPRAS]
    TEXT,       -- Singular [TIMEUNITT]
    TEXT_PL,    -- Plural [TIMEUNITTP]
    ABBREV,     -- Abbreviation [TIMEUNITAV]
    PRIMARY KEY (CLIENT, UNIT_NAME, LANGU)
);