SAP ALM_ME_SYNC_LIST ALM Sync List Table data and field list

ALM_ME_SYNC_LIST is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "ALM Sync List" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_ALM_ME_SYNC_LIST TYPE ALM_ME_SYNC_LIST.

The ALM_ME_SYNC_LIST table consists of various fields, each holding specific information or linking keys about ALM Sync List data available in SAP. These include ORDERID (Order Number), ACTIVITY (Operation/Activity Number), SUB_ACTIVITY (Suboperation), STATUS_OBJECT (Status Object)... 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. .

ALM_ME_SYNC_LIST structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP ALM_ME_SYNC_LIST structure 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 ALM_ME_SYNC_LIST 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
USERIDUser Name in User Master Record XUBNAMECHAR12Assigned to domainXUBNAMEXUS
ORDERIDOrder Number AUFNRCHAR12Assigned to domainALPHAAUFNRANR
ACTIVITYOperation/Activity Number VORNRCHAR4NUMCVVORNRVGN
SUB_ACTIVITYSuboperation UVORNCHAR4NUMCVVORNR
STATUS_OBJECTStatus Object ALM_ME_STATUS_OBJECTCHAR10Assigned to domainALM_ME_STATUS_OBJECT
ALM_COUNTERDevice Counter ALM_ME_COUNTERNUMC10NUMC10
FIN_CONFPartial/Final Confirmation AUERU_VSCHAR1AUERU_VS
SPLITSplit number CY_SPLITINT13INT1
PERSONPersonnel Number PERNR_DNUMC8PERNRPER
WORK_CNTRWork center ARBPLCHAR8ARBPLAGR
PLANPLANTMaintenance Planning Plant IWERKCHAR4Assigned to domainWERKSIWK
CREATE_DATEDate on Which Record Was Created ERDATDATS8DATUM
CREATE_TIMETime created CO_INS_TIMETIMS6UZEIT
LAST_SYNC_DATEDate of Last Synchronization ALM_ME_LSYNC_DATEDATS8DATS
LAST_SYNC_TIMELast Synchronization Time ALM_ME_LSYNC_TIMETIMS6TIME
RETURN_TYPEMessage type: S Success, E Error, W Warning, I Info, A Abort BAPI_MTYPECHAR1SYCHAR01
RETURN_IDMessage Class SYMSGIDCHAR20Assigned to domainARBGB
RETURN_NUMBERMessage Number SYMSGNONUMC3SYMSGNO
RETURN_MESSAGEMessage Text BAPI_MSGCHAR220TEXT220
RETURN_MSG_V1Message Variable SYMSGVCHAR50SYCHAR50
RETURN_MSG_V2Message Variable SYMSGVCHAR50SYCHAR50
RETURN_MSG_V3Message Variable SYMSGVCHAR50SYCHAR50
RETURN_MSG_V4Message Variable SYMSGVCHAR50SYCHAR50
RETURN_PARAMETERParameter Name BAPI_PARAMCHAR32SWC_ELEM
ALM_GUIDGUID in 'CHAR' Format in Uppercase GUID_32CHAR32SYSUUID_C
LOEVMDeletion Indicator LOEVMCHAR1XFELD
IPHASMaintenance Processing Phase PM_PHASECHAR1PM_PHASE
SYS_STATCheckbox XFELDCHAR1XFELD
USR_STATCheckbox XFELDCHAR1XFELD

Key field Non-key field



How do I retrieve data from SAP structure ALM_ME_SYNC_LIST using ABAP code?

As ALM_ME_SYNC_LIST is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on ALM_ME_SYNC_LIST as there is no data to select.

How to access SAP table ALM_ME_SYNC_LIST

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

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