SAP MEREP_RDB_T01_INIT Function Module for SAP Mobile: Get header from /SAPNEA/MBL201
MEREP_RDB_T01_INIT is a standard merep rdb t01 init SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAP Mobile: Get header from /SAPNEA/MBL201 processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for merep rdb t01 init FM, simply by entering the name MEREP_RDB_T01_INIT into the relevant SAP transaction such as SE37 or SE38.
Function Group: MEREP_RUNTIME_MASS
Program Name: SAPLMEREP_RUNTIME_MASS
Main Program: SAPLMEREP_RUNTIME_MASS
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MEREP_RDB_T01_INIT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'MEREP_RDB_T01_INIT'"SAP Mobile: Get header from /SAPNEA/MBL201.
EXPORTING
SYNCBO = "SAP Mobile: Scenario ID
MBL_ID = "ME Replica: ID of a mobile
NUMBER_OF_HEADERS = "
SYNC_GENERIC = "Synchronizer Generic Parameters
* ME = "ME Fields
IMPORTING
MASS_INIT = "Initial Values for Massive Data Synchronization
TABLES
I_WTAB = "ABAP_SOURCE
I_VAL_FILTER = "Value of Filter
IMPORTING Parameters details for MEREP_RDB_T01_INIT
SYNCBO - SAP Mobile: Scenario ID
Data type: MEREP_SCENARIOOptional: No
Call by Reference: Yes
MBL_ID - ME Replica: ID of a mobile
Data type: MEREP_MBL_IDOptional: No
Call by Reference: Yes
NUMBER_OF_HEADERS -
Data type: IOptional: No
Call by Reference: Yes
SYNC_GENERIC - Synchronizer Generic Parameters
Data type: MEREP_SYNC_GENERICOptional: No
Call by Reference: Yes
ME - ME Fields
Data type: MEREP_MEOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for MEREP_RDB_T01_INIT
MASS_INIT - Initial Values for Massive Data Synchronization
Data type: MEREP_MASS_INITOptional: No
Call by Reference: Yes
TABLES Parameters details for MEREP_RDB_T01_INIT
I_WTAB - ABAP_SOURCE
Data type: ABAPSOURCEOptional: No
Call by Reference: Yes
I_VAL_FILTER - Value of Filter
Data type: MEREP_FVALOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for MEREP_RDB_T01_INIT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_i_wtab | TYPE STANDARD TABLE OF ABAPSOURCE, " | |||
| lv_syncbo | TYPE MEREP_SCENARIO, " | |||
| lv_mass_init | TYPE MEREP_MASS_INIT, " | |||
| lv_mbl_id | TYPE MEREP_MBL_ID, " | |||
| lt_i_val_filter | TYPE STANDARD TABLE OF MEREP_FVAL, " | |||
| lv_number_of_headers | TYPE I, " | |||
| lv_sync_generic | TYPE MEREP_SYNC_GENERIC, " | |||
| lv_me | TYPE MEREP_ME. " |
|   CALL FUNCTION 'MEREP_RDB_T01_INIT' "SAP Mobile: Get header from /SAPNEA/MBL201 |
| EXPORTING | ||
| SYNCBO | = lv_syncbo | |
| MBL_ID | = lv_mbl_id | |
| NUMBER_OF_HEADERS | = lv_number_of_headers | |
| SYNC_GENERIC | = lv_sync_generic | |
| ME | = lv_me | |
| IMPORTING | ||
| MASS_INIT | = lv_mass_init | |
| TABLES | ||
| I_WTAB | = lt_i_wtab | |
| I_VAL_FILTER | = lt_i_val_filter | |
| . " MEREP_RDB_T01_INIT | ||
ABAP code using 7.40 inline data declarations to call FM MEREP_RDB_T01_INIT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects