RTC_MODEL

Transparent Table Customizing Table

Model Definition

RTC_MODEL is an SAP database table in S/4HANA. Model Definition. It contains 34 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
P_DRLAll view left_outer BASIC
P_Rtc_Racct view from BASIC

Fields (34)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY model rtc_con_model Model
KEY state rtc_state Status
pdimen rtc_unit_p Partner Dim. Unit
dimen rtc_dimen Dimension Unit
periv periv FY Variant
ktopl ktopl Chart of Accts
iwbpc rtc_iwbpc Integrate with BPC
bpc_env rtc_bpc_env BPC Cons.Environment
bpc_mod rtc_bpc_mod BPC Cons. Model
cts4h rtc_cts4h Crcy Tr. in S/4HANA
tmeth rtc_tranm Translation Method
respo rtc_respo Responsible
creator rtc_creator Created By
date_c rtc_timestamp_c Time Created
modifyier rtc_modifyier Changed By
date_m rtc_timestamp_m Time Changed
version rtc_vern Model Version
cate_f rtc_category_f Final Category
cate_p rtc_category_p Preliminary Category
parte rtc_p_entity Partner Entity
ttype rmvct Transact. Type
dim rtc_dim Dimension
pvers rtc_pvers Product Version
iwuccs rtc_iwuccs Integrate with UC-CS
inact rtc_inact Business Inactive
brfapp_uuid fdt_uuid Universal Unique ID
scoa rtc_ocoa Same CoA
sfyv rtc_sfyv Same FYV
muuid rtc_model_uuid Method UUID
ctmode rtc_ctmode Curr Trans Mode
hdi_container_g rtc_hdi_container_g Logical Container
hdi_namespace rtc_hdi_namespace Namespace
gen_amo_ext rtc_gen_amo_ext Generate Ext. Amount

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.

-- Model Definition
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE RTC_MODEL (
    MANDT,            -- Client [mandt]
    MODEL,            -- Model [rtc_con_model]
    STATE,            -- Status [rtc_state]
    PDIMEN,           -- Partner Dim. Unit [rtc_unit_p]
    DIMEN,            -- Dimension Unit [rtc_dimen]
    PERIV,            -- FY Variant [periv]
    KTOPL,            -- Chart of Accts [ktopl]
    IWBPC,            -- Integrate with BPC [rtc_iwbpc]
    BPC_ENV,          -- BPC Cons.Environment [rtc_bpc_env]
    BPC_MOD,          -- BPC Cons. Model [rtc_bpc_mod]
    CTS4H,            -- Crcy Tr. in S/4HANA [rtc_cts4h]
    TMETH,            -- Translation Method [rtc_tranm]
    RESPO,            -- Responsible [rtc_respo]
    CREATOR,          -- Created By [rtc_creator]
    DATE_C,           -- Time Created [rtc_timestamp_c]
    MODIFYIER,        -- Changed By [rtc_modifyier]
    DATE_M,           -- Time Changed [rtc_timestamp_m]
    VERSION,          -- Model Version [rtc_vern]
    CATE_F,           -- Final Category [rtc_category_f]
    CATE_P,           -- Preliminary Category [rtc_category_p]
    PARTE,            -- Partner Entity [rtc_p_entity]
    TTYPE,            -- Transact. Type [rmvct]
    DIM,              -- Dimension [rtc_dim]
    PVERS,            -- Product Version [rtc_pvers]
    IWUCCS,           -- Integrate with UC-CS [rtc_iwuccs]
    INACT,            -- Business Inactive [rtc_inact]
    BRFAPP_UUID,      -- Universal Unique ID [fdt_uuid]
    SCOA,             -- Same CoA [rtc_ocoa]
    SFYV,             -- Same FYV [rtc_sfyv]
    MUUID,            -- Method UUID [rtc_model_uuid]
    CTMODE,           -- Curr Trans Mode [rtc_ctmode]
    HDI_CONTAINER_G,  -- Logical Container [rtc_hdi_container_g]
    HDI_NAMESPACE,    -- Namespace [rtc_hdi_namespace]
    GEN_AMO_EXT,      -- Generate Ext. Amount [rtc_gen_amo_ext]
    PRIMARY KEY (MANDT, MODEL, STATE)
);