VMITOFF is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for VMITOFF ends the virtual machine instruction trace started with VMITON...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter VMITOFF 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: ABAP virtual machine instruction trace
Text Symbol: 002 = Internal Error During Parameter Transfer
Text Symbol: 003 = Errors During Last Message
Text Symbol: 004 = VMIT is not active
Text Symbol: 005 = VMIT Still Active in Other Mode
Text Symbol: 006 = No Measurement Results Available
Text Symbol: 007 = Unknown Error. Return Code:
Text Symbol: 008 = Internal Error. Data Cannot Be Displayed.
Text Symbol: 009 = No Kernel Support for VMIT
Text Symbol: 010 = VMIT Meas.Error
INCLUDE VMITTYPES.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'VMIT_S_DISPLAY' CHANGING ct_fieldcat = loa_fields[] EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING it_fieldcat = loa_fields[] it_sort = loa_sort[] TABLES t_outtab = l_lst_stats EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.