EDOMAPCLASSDET1

Transparent Table System Table (transport)

eDocument Mapping Class determination

EDOMAPCLASSDET1 is an SAP database table in S/4HANA. eDocument Mapping Class determination. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ElectronicDocMapClassDetn view from BASIC eDocument Mapping Class determination

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY process edoc_process eDoc. Process
KEY version edoc_process_version Proc.Version
KEY interface_id edoc_interface_id Interface ID
KEY edoc_type edoc_type eDoc Type
KEY source_type edoc_source_type Source Type
mapping_class edoc_mapping_class Mapping Class

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.

-- eDocument Mapping Class determination
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE EDOMAPCLASSDET1 (
    PROCESS,        -- eDoc. Process [edoc_process]
    VERSION,        -- Proc.Version [edoc_process_version]
    INTERFACE_ID,   -- Interface ID [edoc_interface_id]
    EDOC_TYPE,      -- eDoc Type [edoc_type]
    SOURCE_TYPE,    -- Source Type [edoc_source_type]
    MAPPING_CLASS,  -- Mapping Class [edoc_mapping_class]
    PRIMARY KEY (PROCESS, VERSION, INTERFACE_ID, EDOC_TYPE, SOURCE_TYPE)
);