AENR SAP (Change Master) Table details

Dictionary Type: Table
Description: Change Master




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




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

AENR is a standard SAP Table which is used to store Change Master data and is available within R/3 SAP systems depending on the version and release level.

The AENR table consists of various fields, each holding specific information or linking keys about Change Master data available in SAP. These include AENNR (Change Number), AENST (Status of change number), AENBE (Authorization group for change master record), DATUV (Valid-From 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. .

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 AENR 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
AENNRChange Number AENNRCHAR12AENNRAENNRAEN
AENSTStatus of change number AENSTNUMC2T419SAENST
AENBEAuthorization group for change master record CC_AENBECHAR4CC_BEGRU
DATUVValid-From Date CC_CCDATDATS8CC_DATUM
TECHVTechnical status from CC_TECHVCHAR12CC_TECHS
ANDATDate record created on CC_ANDATDATS8CC_DATUM
ANNAMUser who created record CC_ANNAMCHAR12CC_USNAM
AEDATDate of Last Change CC_AEDATDATS8CC_DATUM
AENAMName of person who changed object CC_AENAMCHAR12CC_USNAM
AETXTChange Number Description CC_AETXTCHAR40CC_TEXT40
LTXSPLanguage: The long text was stored in this language CC_LTXSPLANG1Assigned to domainISOLASPRAS
AEGRUReason for change CC_AEGRUCHAR40CC_TEXT40
CCARTChange type CC_CCARTNUMC3Assigned to domainCC_CCARTAENR_CCART
CCSTMMaximum partial status keys in engineering change management CCSTM_DNUMC8CC_NUMC8
DYDATIndicator: change number with dynamic date CC_DYDATCHAR1CC_XFELD
CONT1Digital signature (process improvement) CC_DSIGNCHAR1CC_DSIGN
AEFUNChange number function CC_AEFUNCHAR1CC_AEFUN
UESTRIndicator: Overriding possible CC_UESTRCHAR1CC_XFELD
RLKEYRelease Key for Change Master Record CC_RLKEYNUMC2TCC10CC_RLKEYCC_RLKEY
LVORMDeletion Flag for Change Number (Reorganization) CC_LOEKZCHAR1CC_XFELD
CLINTInternal class number describing effectivity type CC_CLINTNUMC10Assigned to domainCC_CLINT
AERNGECM: rank of change number CC_AERNGNUMC2CC_NUMC2
RLDATDate when the release key was changed CC_RLDATDATS8CC_DATUM
RLTIMTime when the release key was changed CC_RLTIMTIMS6CC_UZEIT
TERELIndicator: Technical release occurs CC_TERELCHAR1CC_XFELD
NACHTIndicator: Change Package Created After Release CC_NACHTCHAR1CC_CHAR1
INDATEffective Date of Statutory Regulation CC_INDATDATS8CC_DATUM
AUDATEnd Date for Transitional Period (Prescribed by Law) CC_AUDATDATS8CC_DATUM
FLUSEChange number has been used for data maintenance CC_FLUSECHAR1CC_XFELD
AEDIFECM: differentiate effectivity types CC_AEDIFNUMC10CC_NUMC10
ERLEDIndicator for basic change CC_AEERLCHAR1CC_XFELD

Key field Non-key field



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

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

SELECT SINGLE *
FROM AENR
INTO CORRESPONDING FIELDS OF WA_AENR
WHERE...

How to access SAP table AENR

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