EAM_DTCTNCODE_T

Transparent Table Customizing Table

Text table for Detection Code

EAM_DTCTNCODE_T is an SAP database table in S/4HANA. Text table for Detection Code. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MaintNotifDetectionCodeText view from BASIC Maintenance Notif Detection Code - Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY language SPRAS Language
KEY detectioncode DETECTIONCODE Detection Meth
detectioncodetext DETECTIONCODETEXT Detection Meth Desc

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.

-- Text table for Detection Code
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE EAM_DTCTNCODE_T (
    MANDT,              -- Client [MANDT]
    LANGUAGE,           -- Language [SPRAS]
    DETECTIONCODE,      -- Detection Meth [DETECTIONCODE]
    DETECTIONCODETEXT,  -- Detection Meth Desc [DETECTIONCODETEXT]
    PRIMARY KEY (MANDT, LANGUAGE, DETECTIONCODE)
);