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)
);