TE422 SAP (Schedule Master Data for Meter Reading Unit) Table details

Dictionary Type: Table
Description: Schedule Master Data for Meter Reading Unit




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




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

TE422 is a standard SAP Table which is used to store Schedule Master Data for Meter Reading Unit data and is available within R/3 SAP systems depending on the version and release level.

The TE422 table consists of various fields, each holding specific information or linking keys about Schedule Master Data for Meter Reading Unit data available in SAP. These include TERMSCHL (Meter Reading Unit), TERMTEXT (Text for schedule master record), PERIODEW (Period length: months), PERIODET (Period category).. 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: 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 or numeric)


SAP TE422 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 MANDTCLNT3T000MANDT
TERMSCHLMeter Reading Unit ABLEINHEITCHAR8ABLEINHEITTAETE422A
TERMTEXTText for schedule master record BEZEICHCHAR30BEZEICHNG
PERIODEWPeriod length: months PERIODEWDEC2PERIODEX
PERIODETPeriod category PERIODETCHAR1PERIODET
EPER_ABLInterval between meter reading and end of meter reading per. I_ENDPEABLDEC3DEC3
AUF_ABLInterval between order creation and scheduled reading date I_AUFTRABLDEC3INTERVALL
DOWNL_ABLInterval between download and meter reading I_DOWNLABLDEC3INTERVALL
DRUCK_ABLDays between printout of meter reading orders and MR I_DRUCKABLDEC3INTERVALL
ANSCH_AUFInterval between MR announcement and order creation I_ANSCHAUFDEC3INTERVALL
AUKSA_AUFInterval btw. customer MR order printout and order creation I_AUKSAAUFDEC3INTERVALL
ZLEISTEPermissible combinations of billing class/division category E_ZLEISTECHAR40E_ZLEISTE
PORTIONPortion PORTIONCHAR8TE420PORTIONTPRE420
ABLESERMeter reader number ABLESERCHAR3TE115ABLESER
ABLZEITMeter reading time in hours ABLZEITDEC5(1) ABLZEIT
BELGNABLCreate meter reading documents for reg. not to be read BELGNABLCHAR1KENNZX
AZVORABLNumber of previous meter readings AZVORABLDEC2DEC_02
FORMULARForm for meter reading order BELEGFORMCHAR30EFRMFORMKEY
ZUSMITMeter reading together with allocated main MR unit E_ZUSMITCHAR8Assigned to domainABLEINHEITTKY
DECKBLATForm for cover sheet DCKBLTFORMCHAR30EFRMFORMKEY
KSA_FORMForm for customer meter reading order KSA_FORMCHAR30EFRMFORMKEY
ANSCH_FORMForm for meter reading announcement ANSCH_FORMCHAR30EFRMFORMKEY
MDENRNumber for mobile data entry (MDE) MDENRNUMC3MDENR
ZUORDKZMain meter reading unit E_ZUORDKZCHAR1KENNZX
MUENZZSlot/chip meter MUENZZCHAR1KENNZX
ABLKARMeter Reading Interval in Days ABLKARTDEC2DEC_02
STANDKAREntry Interval in Days STANDKARTDEC2DEC_02
ANSCHKARInterval (in days) for notification and MRO creation ANSCHKARDEC3ANSCHKAR
ABLARTMeter reading by customer ABLARTCHAR1KENNZX
EROEDATCreation date EROEDATDATS8DATUM
ERNAMName of Person who Created the Object ERNAMCHAR12USNAM
AENDDATEChange date AENDDATEDATS8DATUM
AENDNAMLast changed by AENDNAMCHAR12USNAMUSR
ABLFIRMANumber of heating costs subcontractor for meter reading ABLFIRMACHAR8ABLFIRMA
VERTRKL1Billing class E_AKLASSECHAR4EAKLASSEAKLASSE
SPARTENTY1Division category E_SPARTYPNUMC2SPARTYP
VERTRKL2Billing class E_AKLASSECHAR4EAKLASSEAKLASSE
SPARTENTY2Division category E_SPARTYPNUMC2SPARTYP
VERTRKL3Billing class E_AKLASSECHAR4EAKLASSEAKLASSE
SPARTENTY3Division category E_SPARTYPNUMC2SPARTYP
VERTRKL4Billing class E_AKLASSECHAR4EAKLASSEAKLASSE
SPARTENTY4Division category E_SPARTYPNUMC2SPARTYP
VERTRKL5Billing class E_AKLASSECHAR4EAKLASSEAKLASSE
SPARTENTY5Division category E_SPARTYPNUMC2SPARTYP
IDENTFactory Calendar WFCIDCHAR2TFACDWFCIDFCI
SAPKALCorrect Non-Workday CORR_OPTCHAR1SAPKAL
STICHTAGKey Date in Billing on a Monthly Basis E_STICHTAGNUMC2E_STICHTAG
DOWN_FORMForm for download DOWN_FORMCHAR30EFRMFORMKEY
TS_DYNDynamic scheduling TS_DYNCHAR1TS_DYN
ADV_BILLMeter reading unit is for contracts billed in advance ADV_BILLCHAR1KENNZX
TAGENumber of days for period length PORT_TAGENUMC3KKANUM3
AUF_KALUse FC for Interval: Order Creation to Planned Meter Reading AUF_KALCHAR1KENNZX
DRU_KALUse FC for Interval: Printing MR Orders to Meter Reading DRUCK_KALCHAR1KENNZX
DOW_KALUse FC for Interval: Download to Meter Reading DOWNL_KALCHAR1KENNZX
ANK_KALUse FC for Interval: MR Announcement to Order Creation ANSCH_KALCHAR1KENNZX
KND_KALUse FC for Interval: Printing MR Orders to Meter Reading AUKSA_KALCHAR1KENNZX
ABL_ZMeter Reading Center ABL_ZCHAR4TE426ABL_Z
BEGRUAuthorization Group BEGRUCHAR4BEGRU
PS_USEUse Meter Reading Unit for Payment Schema PS_USECHAR1KENNZX
OSB_GROUPOn-Site Billing Group E_OSB_GROUPCHAR3TE555

Key field Non-key field



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

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

SELECT SINGLE *
FROM TE422
INTO CORRESPONDING FIELDS OF WA_TE422
WHERE...

How to access SAP table TE422

Within an ECC or HANA version of SAP you can also view further information about TE422 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!