RTC_ENTITY_M

Transparent Table Application Table

Real-Time Consolidation Entity Mapping

RTC_ENTITY_M is an SAP database table in S/4HANA. Real-Time Consolidation Entity Mapping. It contains 24 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_DRLAll view left_outer BASIC

Fields (24)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY dim RTC_DIM Dimension
KEY entity RTC_ENTITY Entity
rbukrs BUKRS Company Code
rcomp RCOMP_D Company
kokrs KOKRS CO Area
rcntr KOSTL Cost Center
prctr PRCTR Profit Center
rfarea FKBER Functional Area
rbusa GSBER Business Area
segment FB_SEGMENT Segment
flexup RTC_FLEXUP Data from Flex. Upl.
ctrll RTC_CTRL_LVL BPC Control Level
ccnlc RTC_CTRL_CURR_NOT_LC Control Curr not LC
dimls RTC_DIMLIST BPC Dimension List
relim RTC_ELIM BPC Elimination
enjnr RTC_ENABLEJNR BPC Enable Journal
fxtyp RTC_FX_TYPE BPC FX Type
name RTC_ENTITY_NAME Entity Name
local_currency WAERH Currency
createdby RTC_CREATOR Created By
createdat RTC_TIMESTAMP_C Time Created
changedby RTC_MODIFYIER Changed By
changedat RTC_TIMESTAMP_M Time Changed

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.

-- Real-Time Consolidation Entity Mapping
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE RTC_ENTITY_M (
    MANDT,           -- Client [MANDT]
    DIM,             -- Dimension [RTC_DIM]
    ENTITY,          -- Entity [RTC_ENTITY]
    RBUKRS,          -- Company Code [BUKRS]
    RCOMP,           -- Company [RCOMP_D]
    KOKRS,           -- CO Area [KOKRS]
    RCNTR,           -- Cost Center [KOSTL]
    PRCTR,           -- Profit Center [PRCTR]
    RFAREA,          -- Functional Area [FKBER]
    RBUSA,           -- Business Area [GSBER]
    SEGMENT,         -- Segment [FB_SEGMENT]
    FLEXUP,          -- Data from Flex. Upl. [RTC_FLEXUP]
    CTRLL,           -- BPC Control Level [RTC_CTRL_LVL]
    CCNLC,           -- Control Curr not LC [RTC_CTRL_CURR_NOT_LC]
    DIMLS,           -- BPC Dimension List [RTC_DIMLIST]
    RELIM,           -- BPC Elimination [RTC_ELIM]
    ENJNR,           -- BPC Enable Journal [RTC_ENABLEJNR]
    FXTYP,           -- BPC FX Type [RTC_FX_TYPE]
    NAME,            -- Entity Name [RTC_ENTITY_NAME]
    LOCAL_CURRENCY,  -- Currency [WAERH]
    CREATEDBY,       -- Created By [RTC_CREATOR]
    CREATEDAT,       -- Time Created [RTC_TIMESTAMP_C]
    CHANGEDBY,       -- Changed By [RTC_MODIFYIER]
    CHANGEDAT,       -- Time Changed [RTC_TIMESTAMP_M]
    PRIMARY KEY (MANDT, DIM, ENTITY)
);