T059Z

Transparent Table Customizing Table

Quellensteuerkennzeichen (erweiterte Funktionalität)

T059Z is an SAP database table in S/4HANA. Quellensteuerkennzeichen (erweiterte Funktionalität). It contains 16 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_Extendedwhldgtaxcode view from BASIC Extended Withholding Tax Code

Fields (16)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY land1 land1 Country/Reg.
KEY witht witht WTax Type
KEY wt_withcd wt_withcd W/Tax Code
qscod wt_owtcd Off. W/Tax Key
qproz qproz Percentage Subject to Tax
qsatz wt_qsatz WTax Rate
qsatr wt_qsatr Red. WTax Rate
xqfor xqfor WTax Formula
regio regio Region
fprcd fprcd Prov. Tax Code
qekar qekar Income Type
wt_posin wt_posin Posting Indicator
wt_ratez wt_ratez WTax Rate Num.
wt_raten wt_raten WTax Rate Den.
withcd2 withcd2 WTax Key

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.

-- Quellensteuerkennzeichen (erweiterte Funktionalität)
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE T059Z (
    MANDT,      -- Client [mandt]
    LAND1,      -- Country/Reg. [land1]
    WITHT,      -- WTax Type [witht]
    WT_WITHCD,  -- W/Tax Code [wt_withcd]
    QSCOD,      -- Off. W/Tax Key [wt_owtcd]
    QPROZ,      -- Percentage Subject to Tax [qproz]
    QSATZ,      -- WTax Rate [wt_qsatz]
    QSATR,      -- Red. WTax Rate [wt_qsatr]
    XQFOR,      -- WTax Formula [xqfor]
    REGIO,      -- Region [regio]
    FPRCD,      -- Prov. Tax Code [fprcd]
    QEKAR,      -- Income Type [qekar]
    WT_POSIN,   -- Posting Indicator [wt_posin]
    WT_RATEZ,   -- WTax Rate Num. [wt_ratez]
    WT_RATEN,   -- WTax Rate Den. [wt_raten]
    WITHCD2,    -- WTax Key [withcd2]
    PRIMARY KEY (MANDT, LAND1, WITHT, WT_WITHCD)
);