SAP TE418 Schedule Records: MR Units Table data and field list

TE418 is a standard SAP Table which is used to store Schedule Records: MR Units data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The TE418 table consists of various fields, each holding specific information or linking keys about Schedule Records: MR Units data available in SAP. These include TERMSCHL (Schedule record for a meter reading unit), TERMTDAT (Date of schedule record), TERMPDAT (Date on which the schedule record was created), ADATSOLL (Scheduled meter reading date)... 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. .

TE418 table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


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

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the TE418 table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
TERMSCHLSchedule record for a meter reading unit ABLEINH_TSCHAR8Assigned to domainABLEINHEIT
TERMTDATDate of schedule record TERMTDATDATS8DATUM
TERMPDATDate on which the schedule record was created TERMPDATDATS8DATUM
ADATSOLLScheduled meter reading date ADATSOLLDATS8DATUMPLANDAT
BEGABLVLatest date for order creation BEGABLVDATS8DATUM
BEGABLKDate of order creation for meter reading by customer BEGABLKDATS8DATUM
BEGABLADate on which meter reading announcement is to be created BEGABLADATS8DATUM
BEGABLPDate When Meter Reading Orders Are to be Printed BEGABLPDATS8DATUM
BEGABLDDate of download BEGABLDDATS8DATUM
SAPKALCorrect Non-Workday CORR_OPTCHAR1SAPKAL
IDENTFactory Calendar WFCIDCHAR2TFACDWFCIDFCI
ZUORDDATMeter reading allocation date E_ZUORDDATDATS8DATUM
BEGABLDate on which meter reading unit is to be read BEGABLDATS8DATUM
ALKARDATKey date for meter reading interval ALKARDATDATS8DATUM
ABLESGRMeter reading reason ABLESGRCHAR2TE609ABLESGRABLGRD
ABLESARTScheduled meter reading category GEPLABLCHAR2TE614ABLESETYP
THGDATAllocation Date for Gas Billing THGDATDATS8DATUM
DATUMDFScheduled date for invoicing printout DATUMDFDATS8DATUM
ENDVOPEREnd of the previous period ENDVOPERDATS8DATUM
ABRDATSScheduled Billing Date ABRDATSDATS8DATUMABRDATS
ERDATDate on Which Record Was Created ERDATDATS8DATUM
ERNAMName of Person who Created the Object ERNAMCHAR12USNAM
AEDATChanged On AEDATDATS8DATUM
AENAMName of Person Who Changed Object AENAMCHAR12USNAM
TS_DYNDynamic scheduling TS_DYNCHAR1TS_DYN
ESTINBILLMeter Reading Results are Estimated in Billing ESTINBILLCHAR2ESTINBILL
ABSLANPAdjust Budget Billing Plan During Interim Billing E_ABSLANPCHAR1KENNZX

Key field Non-key field



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

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

SELECT SINGLE *
FROM TE418
INTO CORRESPONDING FIELDS OF WA_TE418
WHERE...

How to access SAP table TE418

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

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