TVROT

Transparent Table Customizing Table

Routes: Texts

TVROT is an SAP database table in S/4HANA. Routes: Texts. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RouteText view from BASIC Route Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY spras SPRAS Language
KEY route ROUTE Route
bezei ROUTBEZ Description

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.

-- Routes: Texts
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TVROT (
    MANDT,  -- Client [MANDT]
    SPRAS,  -- Language [SPRAS]
    ROUTE,  -- Route [ROUTE]
    BEZEI,  -- Description [ROUTBEZ]
    PRIMARY KEY (MANDT, SPRAS, ROUTE)
);