MCEVMI10 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 MCEVMI10 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!
ENQUEUE_ERCEVM CALL FUNCTION 'ENQUEUE_ERCEVM' EXPORTING METNR = VMETK-METNR X_METNR = KREUZ EXCEPTIONS FOREIGN_LOCK = 01 SYSTEM_FAILURE = 02.
DIMENSION_GET_FOR_UNIT CALL FUNCTION 'DIMENSION_GET_FOR_UNIT' EXPORTING LANGUAGE = SY-LANGU UNIT = VMETK-MZEIH USE_BUFFER_FOR_TEXT = 'X' IMPORTING DIMENSION = DIMID EXCEPTIONS UNIT_NOT_FOUND = 01.
CETA_TZART_READ CALL FUNCTION 'CETA_TZART_READ' EXPORTING ZEART = VMETK-MZART IMPORTING TZART_EXP = TZART EXCEPTIONS NO_ENTRY = 01.
CETA_TC20_READ CALL FUNCTION 'CETA_TC20_READ' EXPORTING PARID = TZART-PARID IMPORTING TC20_EXP = TC20 EXCEPTIONS NO_ENTRY = 01.
CTCV_SYNTAX_CHECK CALL FUNCTION 'CTCV_SYNTAX_CHECK' EXPORTING ATTRIBUT = TRANSFER-ATNAM DECIMALS = TRANSFER-ANZDZ DEC_PRESENTATION = DECIMALPOINT EXPONENT = TRANSFER-ATDIM EXPONENT_ART = TRANSFER-ATDEX FORMAT = TRANSFER-ATFOR INTERVAL = SPACE LANGUAGE = SY-LANGU LENGTH = TRANSFER-ANZST LOWERCASE = TRANSFER-ATKLE MASK = SCHABLONE NEGATIV = TRANSFER-ATVOR SCREEN_NAME = SPACE SINGLE_SELECTION = TRANSFER-ATEIN STRING = RCEVM-ATWRT TABLES TSTRG = VALUE_CHECK.
FUNCTION_EXISTS CALL FUNCTION 'FUNCTION_EXISTS' EXPORTING FUNCNAME = RS38L-NAME EXCEPTIONS FUNCTION_NOT_EXIST = 1 OTHERS = 2.
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING SYSTEMTYPE = IMP_TYPE EXCEPTIONS NO_SYSTEMNAME = 1 NO_SYSTEMTYPE = 2 OTHERS = 3.
RS_HELP_HANDLING CALL FUNCTION 'RS_HELP_HANDLING' EXPORTING DYNPFIELD = DYNP_FIELD_TAB-FIELDNAME DYNPNAME = SY-DYNNR OBJECT = 'FB' PROGNAME = 'SAPMCEVM' SUPPRESS_SELECTION_SCREEN = KREUZ.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.