T005R

Transparent Table Customizing Table

Country Keys for the Withholding Tax: Names

T005R is an SAP database table in S/4HANA. Country Keys for the Withholding Tax: Names. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_WithholdingTaxCountryTextTmp view from CONSUMPTION

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY spras SPRAS Language
KEY land1 LAND1 Country/Reg.
KEY qland QLAND WTax C/R Key
qltxt TXT30 Text

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.

-- Country Keys for the Withholding Tax: Names
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE T005R (
    MANDT,  -- Client [MANDT]
    SPRAS,  -- Language [SPRAS]
    LAND1,  -- Country/Reg. [LAND1]
    QLAND,  -- WTax C/R Key [QLAND]
    QLTXT,  -- Text [TXT30]
    PRIMARY KEY (MANDT, SPRAS, LAND1, QLAND)
);