TFK004

Transparent Table Customizing Table

Selection categories for manual payment processing

TFK004 is an SAP database table in S/4HANA. Selection categories for manual payment processing. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CASelectionCategory view from BASIC Selektionstyp

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY applk APPLK_KK ApplicationArea
KEY seltx SELTT_KK Selection Cat.
selfn SELFN_KK Field Name
selmi SELMI_KK Matchcode ID
selmo SELMO_KK Matchcode
xselx XSELX_KK External field
xrlot XRLOT_KK Returns usable

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.

-- Selection categories for manual payment processing
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TFK004 (
    MANDT,  -- Client [MANDT]
    APPLK,  -- ApplicationArea [APPLK_KK]
    SELTX,  -- Selection Cat. [SELTT_KK]
    SELFN,  -- Field Name [SELFN_KK]
    SELMI,  -- Matchcode ID [SELMI_KK]
    SELMO,  -- Matchcode [SELMO_KK]
    XSELX,  -- External field [XSELX_KK]
    XRLOT,  -- Returns usable [XRLOT_KK]
    PRIMARY KEY (MANDT, APPLK, SELTX)
);