MEREP_RETRY_BP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter MEREP_RETRY_BP into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_GENERI = Generic Sync
Selection Text: P_SMART = Smart Sync
Title: Retry Handler
WAF_CONSTANTS ,
MEREP_CONSTANTS01 ,
MEREP_DEVICE_OBJ .
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_MEREP_502 call function 'ENQUEUE_MEREP_502' EXPORTING mode_merep_502 = 'E' mandt = sy-mandt mbl_id = prf_mblid x_mbl_id = ' ' _scope = '2' _wait = 'X' _collect = ' ' EXCEPTIONS foreign_lock = 1 system_failure = 2 others = 3.
DEQUEUE_MEREP_502 call function 'DEQUEUE_MEREP_502' EXPORTING mode_merep_502 = 'E' mandt = sy-mandt mbl_id = prf_mblid x_mbl_id = ' ' _scope = '3' _synchron = ' ' _collect = ' '.
ME_GENERIC_BODY_HANDLER call function 'ME_GENERIC_BODY_HANDLER' EXPORTING inbound_header = prs_mesyhead IMPORTING outbound_header = lds_outbound_header TABLES inbound_container = ldt_inbound_container outbound_container = ldt_outbound_container.
ME_MAPPING call function 'ME_MAPPING' EXPORTING method = prs_mesyhead-method IMPORTING function = ldf_funct rfcdest = ldf_rfcdest sysrelease = ldf_sysrelease EXCEPTIONS mapping_failed = 1 others = 2.
BALW_BAPIRETURN_GET2 call function 'BALW_BAPIRETURN_GET2' EXPORTING type = 'E' cl = 'WAF' number = '001' par1 = ldf_par1 IMPORTING return = lds_return.
BALW_BAPIRETURN_GET2 call function 'BALW_BAPIRETURN_GET2' EXPORTING type = 'E' cl = 'WAF' number = ldf_msgno par1 = ldf_par1 IMPORTING return = lds_return.
MEREP_HANDLER * call function 'MEREP_HANDLER' * in background task * exporting * i_device_control = lds_mbl507.
ENQUEUE_MEREP_503 call function 'ENQUEUE_MEREP_503' exporting mode_merep_503 = 'X' * MANDT = SY-MANDT direction = prf_direction mbl_id = prf_mbl_id * X_DIRECTION = ' ' * X_MBL_ID = ' ' * _SCOPE = '2' _wait = space * _COLLECT = ' ' exceptions foreign_lock = 1 system_failure = 2 others = 3 .
DEQUEUE_MEREP_503 call function 'DEQUEUE_MEREP_503' EXPORTING mode_merep_503 = 'X' mandt = sy-mandt direction = prf_direction mbl_id = prf_mbl_id EXCEPTIONS others = 0.
MEREP_HANDLER * call function 'MEREP_HANDLER' * exporting * i_device_control = prs_507.
MEREP_AHANDLER CALL FUNCTION 'MEREP_AHANDLER' IN BACKGROUND TASK EXPORTING I_DEVICE_CONTROL = PRS_507.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.