MDM_EXTRACTION_F02 is a standard ABAP INCLUDE 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_EXTRACTION_F02 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-006 text_question = text-007 text_button_1 = text-001 "YES text_button_2 = text-002 "NO display_cancel_button = gc_chr_x IMPORTING answer = lv_confirm_flag.
MDM_START_EXTRACTION_FROM_VARI CALL FUNCTION 'MDM_START_EXTRACTION_FROM_VARI' EXPORTING iv_variant = gv_variante.
BP_JOB_SELECT_SM37B CALL FUNCTION 'BP_JOB_SELECT_SM37B' EXPORTING jobselect_dialog = lv_btc_yes jobsel_param_in = ls_btcselect IMPORTING jobsel_param_out = ls_btcselect TABLES jobselect_joblist_b = lt_joblist_b EXCEPTIONS invalid_dialog_type = 1 jobname_missing = 2 no_jobs_found = 3 selection_canceled = 4 username_missing = 5 OTHERS = 6.
BP_JOBLIST_PROCESSOR_SM37B CALL FUNCTION 'BP_JOBLIST_PROCESSOR_SM37B' EXPORTING joblist_opcode = lv_btc_joblist_show TABLES joblist = lt_joblist EXCEPTIONS invalid_opcode = 1 joblist_is_empty = 2 joblist_processor_canceled = 3 OTHERS = 4.
POPUP_DISPLAY_TEXT_USER_BUTTON CALL FUNCTION 'POPUP_DISPLAY_TEXT_USER_BUTTON' EXPORTING * LANGUAGE = SY-LANGU popup_title = text-003 start_column = 10 start_row = 3 * DOCU_CLASS = 'DT' text_object = gc_exvari_info * DISPLAY_OK_BUTTON = 'X' * DISPLAY_CANCEL_BUTTON = 'X' * IMPORTING * ANSWER = TABLES * USER_BUTTONS = parameter = lt_parameter EXCEPTIONS error_in_text = 1 text_not_found = 2 OTHERS = 3.
MDM_SERV_SELTRANS_MAINTAIN CALL FUNCTION 'MDM_SERV_SELTRANS_MAINTAIN' EXPORTING i_extobj = mdmexvari_ts-extractor i_workmode = 'R' i_with_gui = 'X' TABLES c_t_select_trans = lt_select_trans.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.