RDTX

Transparent Table Customizing Table

Short text describing the rounding profile

RDTX is an SAP database table in S/4HANA. Short text describing the rounding profile. It contains 5 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
C_Roundingprfltexttemp view from CONSUMPTION Rounding Profile Text View
I_LogisticalRoundingProfileT view_entity from BASIC Logistical Rounding Profile - Text
I_RoundingPrfText view from BASIC Rounding Prf Text VDM view for VH

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY spras spras Language
KEY werks werks_d Plant
KEY rdprf rdprf Rnding Profile
text40 text40 Name

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.

-- Short text describing the rounding profile
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE RDTX (
    MANDT,   -- Client [mandt]
    SPRAS,   -- Language [spras]
    WERKS,   -- Plant [werks_d]
    RDPRF,   -- Rnding Profile [rdprf]
    TEXT40,  -- Name [text40]
    PRIMARY KEY (MANDT, SPRAS, WERKS, RDPRF)
);