IMTR

Transparent Table Temporary Data

Termination of MeasRead. Data Transfer to Measuring Points

IMTR is an SAP database table in S/4HANA. Termination of MeasRead. Data Transfer to Measuring Points. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_FailedMeasurementReading view from BASIC Failed Measurement Document Reading

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY idate IMRC_IDATE Date
KEY itime IMRC_ITIME MeasurementTime
KEY rootd IMRC_ROOTD Source document
KEY point IMRC_POINT Measuring point
msgno SYMSGNO Message Number

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.

-- Termination of MeasRead. Data Transfer to Measuring Points
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE IMTR (
    MANDT,  -- Client [MANDT]
    IDATE,  -- Date [IMRC_IDATE]
    ITIME,  -- MeasurementTime [IMRC_ITIME]
    ROOTD,  -- Source document [IMRC_ROOTD]
    POINT,  -- Measuring point [IMRC_POINT]
    MSGNO,  -- Message Number [SYMSGNO]
    PRIMARY KEY (MANDT, IDATE, ITIME, ROOTD, POINT)
);