MEC_LCL_HANDLER 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 MEC_LCL_HANDLER 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: Include MEC_LCL_HANDLER
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DOCU_CALL CALL FUNCTION 'DOCU_CALL' EXPORTING DISPL = 'X' DISPL_MODE = '2' ID = 'TX' LANGU = SY-LANGU OBJECT = lv_doc_object EXCEPTIONS WRONG_NAME = 1 OTHERS = 2 .
EDITOR_PROGRAM CALL FUNCTION 'EDITOR_PROGRAM' EXPORTING DISPLAY = 'X' LINE = lv_cursorline PROGRAM = wa_bps-BP_PROGRAM TOPLINE = lv_topline EXCEPTIONS OTHERS = 1.
POPUP_TO_DECIDE_LIST CALL FUNCTION 'POPUP_TO_DECIDE_LIST' EXPORTING CURSORLINE = lv_cur_line MARK_FLAG = ' ' START_COL = 4 "Positionierung x START_ROW = 2 "Positionierung y TEXTLINE1 = 'Select UI type to be measured'"text-522 "'Select UI type to be measured' TITEL = 'Version Info'"text-527 "'Version Info' IMPORTING ANSWER = lv_answer TABLES T_SPOPLI = it_sel_col_pop EXCEPTIONS NOT_ENOUGH_ANSWERS = 1 TOO_MUCH_ANSWERS = 2 TOO_MUCH_MARKS = 3 OTHERS = 4 .
POPUP_TO_DECIDE_LIST CALL FUNCTION 'POPUP_TO_DECIDE_LIST' EXPORTING * CURSORLINE = 1 MARK_FLAG = 'X' MARK_MAX = 0 START_COL = 2 START_ROW = 5 TEXTLINE1 = 'Version Info' "text-310 "'Version Info ' TEXTLINE2 = 'show type' "text-311 "'anzeigen von' TEXTLINE3 = '(please choose):' "text-312 "'(bitte auswählen):' TITEL = 'Version Info of' "text-310 "'Version Info' * DISPLAY_ONLY = ' ' IMPORTING ANSWER = lv_answer TABLES T_SPOPLI = it_sel_col_pop EXCEPTIONS NOT_ENOUGH_ANSWERS = 1 TOO_MUCH_ANSWERS = 2 TOO_MUCH_MARKS = 3 OTHERS = 4 .
S_MEC_VINF call function 'S_MEC_VINF' destination rfc_dest.
TH_REMOTE_TRANSACTION CALL FUNCTION 'TH_REMOTE_TRANSACTION' EXPORTING DEST = dest TCODE = lv_tcode IMPORTING COMM_MESSAGE = lv_comm_message SYST_MESSAGE = lv_syst_message.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.