IMPH SAP (Measurement and Counter Reading Transmission History) Table details

Dictionary Type: Table
Description: Measurement and Counter Reading Transmission History




ABAP Code to SELECT data from IMPH
Related tables to IMPH
Access table IMPH




Table field list including key, data, relationships and ABAP select examples

IMPH is a standard SAP Table which is used to store Measurement and Counter Reading Transmission History data and is available within R/3 SAP systems depending on the version and release level.

The IMPH table consists of various fields, each holding specific information or linking keys about Measurement and Counter Reading Transmission History data available in SAP. These include POINT (Measuring Point), SUBID (Line Number in Table IMPH (2,000,000,001 - n)), CANCL (Reversal Indicator), DATLO (Date: Valid From).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP IMPH table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
POINTMeasuring Point IMRC_POINTCHAR12IMPTTALPHAIMRC_POINTIPTIMPM
SUBIDLine Number in Table IMPH (2,000,000,001 - n) IMRC_SUBIDINT410INT4_NOS
CANCLReversal Indicator IMRC_CANCLCHAR1X
DATLODate: Valid From IMRC_DATLODATS8DATUM
TIMLOTime: Valid From (Exclusive) IMRC_TIMLOTIMS6UZEIT
INVLOInverted Time Stamp: 99.999.999.999 - Seconds AD IMRC_INVTSNUMC11NUMC11
DATHIDate: Valid To IMRC_DATHIDATS8DATUM
TIMHITime: Valid To (Inclusive) IMRC_TIMHITIMS6UZEIT
INVHIInverted Time Stamp: 99.999.999.999 - Seconds AD IMRC_INVTSNUMC11NUMC11
TRANSMeasuring Point from Which Meas. Reading Was Transferred IMRC_TRANSCHAR12IMPTTALPHAIMRC_POINTIMPM
DATCRDate on which the object was created ICRDTDATS8DATUM
NAMCRName of User Who Created the Object ICRNACHAR12USNAM
GENEROrigin Indicator for Entry in Table IMPH IMRC_IMPHGCHAR1IMRC_IMPHG
UPDATChange Indicator for Entry in Table IMPH IMRC_IMPHCCHAR1IMRC_IMPHG

Key field Non-key field



How do I retrieve data from SAP table IMPH using ABAP code

The following ABAP code Example will allow you to do a basic selection on IMPH to SELECT all data from the table
DATA: WA_IMPH TYPE IMPH.

SELECT SINGLE *
FROM IMPH
INTO CORRESPONDING FIELDS OF WA_IMPH
WHERE...

How to access SAP table IMPH

Within an ECC or HANA version of SAP you can also view further information about IMPH and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!