BGSAFT_WHTMAP

Transparent Table Customizing Table

SAF-T BG: Mapping Withholding Tax Type

BGSAFT_WHTMAP is an SAP database table in S/4HANA. SAF-T BG: Mapping Withholding Tax Type. It contains 11 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BG_SAFTWhgdTaxMapping view_entity from BASIC SAFT BG Mapping Withholding Tax Type

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY bukrs bukrs Company Code
KEY witht witht WTax Type
KEY withcd wt_withcd W/Tax Code
KEY hkont hkont G/L Acct
KEY endda vim_endda Valid To
begda vim_begda Valid From
tax_wht_descr bgsaft_tax_base_description
tax_type bgsaft_tax_type
tax_code bgsaft_tax_code
tax_percentage bgsaft_tax_percentage

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.

-- SAF-T BG: Mapping Withholding Tax Type
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE BGSAFT_WHTMAP (
    MANDT,           -- Client [mandt]
    BUKRS,           -- Company Code [bukrs]
    WITHT,           -- WTax Type [witht]
    WITHCD,          -- W/Tax Code [wt_withcd]
    HKONT,           -- G/L Acct [hkont]
    ENDDA,           -- Valid To [vim_endda]
    BEGDA,           -- Valid From [vim_begda]
    TAX_WHT_DESCR,   -- bgsaft_tax_base_description
    TAX_TYPE,        -- bgsaft_tax_type
    TAX_CODE,        -- bgsaft_tax_code
    TAX_PERCENTAGE,  -- bgsaft_tax_percentage
    PRIMARY KEY (MANDT, BUKRS, WITHT, WITHCD, HKONT, ENDDA)
);