SAP MEREP_401 SyncBO ID Table data and field list

MEREP_401 is a standard SAP Table which is used to store SyncBO ID data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The MEREP_401 table consists of various fields, each holding specific information or linking keys about SyncBO ID data available in SAP. These include OBJTYPE (Object Type), CREDAT (Created on), CRENAM (Created by), CRETIM (Create Time)... 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. .

MEREP_401 table Technical Details:

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = MEREP_401T


SAP MEREP_401 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 MEREP_401 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
SCENARIOSyncBO ID MEREP_SCENARIOCHAR10MEREP_SCENARIOMEREP_SCENARIO
OBJTYPEObject Type MEREP_OBJTYPECHAR10TOJTBOJ_NAME
CREDATCreated on MEREP_CREDATDATS8DATUM
CRENAMCreated by MEREP_CRENAMCHAR12SYCHAR12
CRETIMCreate Time MEREP_CRETIMETIMS6SYTIME
CHGDATLast Changed on MEREP_CHGDATDATS8DATUM
CHGNAMLast Changed by MEREP_CHGNAMCHAR12SYCHAR12
CHGTIMLast Changed at MEREP_CHGTIMETIMS6SYTIME
GENDATLast Generated Date (Synchronizer) MEREP_GENDATDATS8DATUM
GENNAMLast Generated by (Synchronizer) MEREP_GENNAMCHAR12SYCHAR12
GENTIMLast Generation Time (Synchronizer) MEREP_GENTIMETIMS6SYTIME
SAPRLSAP Release at Synchronizer Generation MEREP_SAPRLCHAR4SYCHAR04
VERNUMSyncBO Version Number MEREP_VERNUMDEC6MEREP_VERNUM
GENVERGeneration Version Number MEREP_GENVERDEC6MEREP_VERNUM
RFCDESTLogical Destination (Specified in Function Call) RFCDESTCHAR32RFCDESRFCDESTRFCF4_RFCDESTYPEALL
RFCFLAGSyncBO Specific RFC Destination MEREP_RFCFLAGCHAR1MEREP_FLAG
SYNCTYPESynchronization Type MEREP_SYNCTYPECHAR3MEREP_801MEREP_SYNCTYPE
EDITLOCKLock Editor MEREP_EDITLOCKCHAR1MEREP_FLAG
TYPCHKType Conflict Check MEREP_TYPCHKCHAR1MEREP_FLAG
PUBLISHPublished MEREP_PUBLISHCHAR1MEREP_FLAG
FUNC_GROUPFunction Group MEREP_FUNC_GROUPCHAR26TLIBGAREA
ITEM_COMPAREInclude Item Compare Logic in Synchronizer MEREP_ITEMCOMPCHAR1MEREP_FLAG
SYNTAX_ERRORSyntax Error Exists MEREP_SYNTAXERCHAR1MEREP_FLAG
META_ERRORInterface Inconsistency MEREP_METAERRCHAR1MEREP_FLAG
PUSH_ENABLEDPush-Enabled MEREP_PUSH_ENABLEDCHAR1AS4FLAG
DEFAULT_IS_ASYNCDefault Mode for Synchronization is Asynchronous Mode MEREP_DEFAULT_IS_ASYNCCHAR1FLAG
MASS_DATAMass Data MEREP_MASS_DATACHAR1MEREP_FLAG

Key field Non-key field



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

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

SELECT SINGLE *
FROM MEREP_401
INTO CORRESPONDING FIELDS OF WA_MEREP_401
WHERE...

How to access SAP table MEREP_401

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

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