TFK8250

Transparent Table Customizing Table

Intercompany Settlement Types

TFK8250 is an SAP database table in S/4HANA. Intercompany Settlement Types. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CAIntcoType view_entity from BASIC Art der konzerninternen Verrechnung

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY ico_type ICO_TYPE_KK IntSettlmntType
ico_proc ICO_PROC_KK IntSettlmntProc
bitcat BITCAT_KK Class
subprocess SUB_PROCESS_KK Subprocess
bittype_req ICO_BITTYPE_REQ_KK BIT Type (Req.)
bittype_sup ICO_BITTYPE_SUP_KK BIT Type(Supp.)
ico_invcr ICO_INVCR_KK Invoicing In
ico_subtype ICO_SUBTYPE_KK Subtype

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.

-- Intercompany Settlement Types
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TFK8250 (
    MANDT,        -- Client [MANDT]
    ICO_TYPE,     -- IntSettlmntType [ICO_TYPE_KK]
    ICO_PROC,     -- IntSettlmntProc [ICO_PROC_KK]
    BITCAT,       -- Class [BITCAT_KK]
    SUBPROCESS,   -- Subprocess [SUB_PROCESS_KK]
    BITTYPE_REQ,  -- BIT Type (Req.) [ICO_BITTYPE_REQ_KK]
    BITTYPE_SUP,  -- BIT Type(Supp.) [ICO_BITTYPE_SUP_KK]
    ICO_INVCR,    -- Invoicing In [ICO_INVCR_KK]
    ICO_SUBTYPE,  -- Subtype [ICO_SUBTYPE_KK]
    PRIMARY KEY (MANDT, ICO_TYPE)
);