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 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_DRLAll view left_outer BASIC

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY dim rtc_dim Dimension
KEY entity rtc_entity Entity
flexup rtc_flexup Data from Flex. Upl.
name rtc_entity_name Entity Name
local_currency waerh Currency

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]
    FLEXUP,          -- Data from Flex. Upl. [rtc_flexup]
    NAME,            -- Entity Name [rtc_entity_name]
    LOCAL_CURRENCY,  -- Currency [waerh]
    PRIMARY KEY (MANDT, DIM, ENTITY)
);