TKEB

Transparent Table Customizing Table

Management for Operating Concerns (Client-Specific)

TKEB is an SAP database table in S/4HANA. Management for Operating Concerns (Client-Specific). It contains 20 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_OperatingConcern view from BASIC Operating Concern

Fields (20)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY erkrs ERKRS Operating concern
saprl RKE_SAPRL SAP Release
pvers RKE_PVERS Program Version
hityp HITYP_KH Hierarchy type
waers RKE_WAERS Op.concern cur.
periv PERIV FY Variant
perflag PERFLAG Period type
periv2 PERIV2 Alt.F.year var.
perflag2 PERFLAG2 Alt.period type
useper2i USEPER2I Act. 2nd per.tp
useper2p USEPER2P Plan 2nd per.tp
timestmp RKE_DBSTMP Start time
aleact RKE_ALEACT Distrib. Cost-Based
char_check RKE_CHAR_CHECK Check Chars
crerl RKE_CRERL Release
creda RKE_CREDA Created On
update_mode KEPSL_UPD_MODE Update Mode
no_ce3 FLAG Indicator
aleact_cpa RKE_ALEACT_CPA Distribution Comb.

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.

-- Management for Operating Concerns (Client-Specific)
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TKEB (
    MANDT,        -- Client [MANDT]
    ERKRS,        -- Operating concern [ERKRS]
    SAPRL,        -- SAP Release [RKE_SAPRL]
    PVERS,        -- Program Version [RKE_PVERS]
    HITYP,        -- Hierarchy type [HITYP_KH]
    WAERS,        -- Op.concern cur. [RKE_WAERS]
    PERIV,        -- FY Variant [PERIV]
    PERFLAG,      -- Period type [PERFLAG]
    PERIV2,       -- Alt.F.year var. [PERIV2]
    PERFLAG2,     -- Alt.period type [PERFLAG2]
    USEPER2I,     -- Act. 2nd per.tp [USEPER2I]
    USEPER2P,     -- Plan 2nd per.tp [USEPER2P]
    TIMESTMP,     -- Start time [RKE_DBSTMP]
    ALEACT,       -- Distrib. Cost-Based [RKE_ALEACT]
    CHAR_CHECK,   -- Check Chars [RKE_CHAR_CHECK]
    CRERL,        -- Release [RKE_CRERL]
    CREDA,        -- Created On [RKE_CREDA]
    UPDATE_MODE,  -- Update Mode [KEPSL_UPD_MODE]
    NO_CE3,       -- Indicator [FLAG]
    ALEACT_CPA,   -- Distribution Comb. [RKE_ALEACT_CPA]
    PRIMARY KEY (MANDT, ERKRS)
);