DMC_TROBJ

Transparent Table System Table (SAP only)

DMC: Recoding Object Definition

DMC_TROBJ is an SAP database table in S/4HANA. DMC: Recoding Object Definition. It contains 20 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
/LTB/I_MC_ACTIVITY_DETAIL_LIST view left_outer The activity details of MC

Fields (20)

KeyField Data ElementDescription DomainTypeLength
KEY guid DMC_TROBJ_GUID GUID Transl.obj.
trtype DMC_TRTYPE Conversion Type
ident DMC_TROBJIDENT Identifier
visibility DMC_VISIB Classification
assign_to DMC_ASSIGNED GUID Org. Unit
chnam SYUNAME User Name
changedate SYDATUM Current Date
author SYUNAME User Name
createdate SYDATUM Current Date
versio DMC_VERSIO Version Number
trerr_handling DMC_TRERR_HANDLING Error Handling
no_initial DMC_BOOLEAN MWB: Boolean Variable (X=true, -=false)
std_value VALUEFROM Old value
value_paramno DMC_PARA Parameter No.
fill_missing DMC_BOOLEAN MWB: Boolean Variable (X=true, -=false)
tech DMC_BOOLEAN MWB: Boolean Variable (X=true, -=false)
sortcrit DMC_CNVLOGIC_SORTCRIT Sort criterion
content_date DATS Date
content_time TIMS Field of type TIMS
is_modified DMC_CONTENT_MODIFIED content modif

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.

-- DMC: Recoding Object Definition
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DMC_TROBJ (
    GUID,            -- GUID Transl.obj. [DMC_TROBJ_GUID]
    TRTYPE,          -- Conversion Type [DMC_TRTYPE]
    IDENT,           -- Identifier [DMC_TROBJIDENT]
    VISIBILITY,      -- Classification [DMC_VISIB]
    ASSIGN_TO,       -- GUID Org. Unit [DMC_ASSIGNED]
    CHNAM,           -- User Name [SYUNAME]
    CHANGEDATE,      -- Current Date [SYDATUM]
    AUTHOR,          -- User Name [SYUNAME]
    CREATEDATE,      -- Current Date [SYDATUM]
    VERSIO,          -- Version Number [DMC_VERSIO]
    TRERR_HANDLING,  -- Error Handling [DMC_TRERR_HANDLING]
    NO_INITIAL,      -- MWB: Boolean Variable (X=true, -=false) [DMC_BOOLEAN]
    STD_VALUE,       -- Old value [VALUEFROM]
    VALUE_PARAMNO,   -- Parameter No. [DMC_PARA]
    FILL_MISSING,    -- MWB: Boolean Variable (X=true, -=false) [DMC_BOOLEAN]
    TECH,            -- MWB: Boolean Variable (X=true, -=false) [DMC_BOOLEAN]
    SORTCRIT,        -- Sort criterion [DMC_CNVLOGIC_SORTCRIT]
    CONTENT_DATE,    -- Date [DATS]
    CONTENT_TIME,    -- Field of type TIMS [TIMS]
    IS_MODIFIED,     -- content modif [DMC_CONTENT_MODIFIED]
    PRIMARY KEY (GUID)
);