MDM_BATCH_EXTRACT 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 MDM_BATCH_EXTRACT 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.
Title: Data Extraction Using SUBMIT_JOB as Batch Process
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_E_MDMREQUEST CALL FUNCTION 'ENQUEUE_E_MDMREQUEST' EXPORTING mode_mdm_request_stat = 'E' mandt = sy-mandt reqid = l_s_request-reqid EXCEPTIONS OTHERS = 1.
MDM_EXTRACT_CONTROLLER CALL FUNCTION 'MDM_EXTRACT_CONTROLLER' EXPORTING i_s_request = l_s_request i_s_extractor = l_s_extractor i_comtype = l_comtype i_repair_request = l_repair_request i_suppress_receipts = l_suppress_recpt TABLES i_t_select = l_t_select i_t_transfer = l_t_transfer EXCEPTIONS extraction_failed = 1 consistency_error = 2 no_extraction = 3 OTHERS = 4.
DEQUEUE_E_MDMREQUEST CALL FUNCTION 'DEQUEUE_E_MDMREQUEST' EXPORTING mode_mdm_request_stat = 'E' mandt = sy-mandt reqid = l_s_request-reqid.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
MDM_BATCH_EXTRACT - Data Extraction Using SUBMIT_JOB as Batch Process MDM_BATCH_EXTRACT - Data Extraction Using SUBMIT_JOB as Batch Process MDM_AUTOMATED_EXTRACTION - Automated Master Data Extraction MDM_AUTOMATED_EXTRACTION - Automated Master Data Extraction MDMKLPVB - Report for copying the line supply areas to production versions MDMKLPVB - Report for copying the line supply areas to production versions