MQEVAF_MS01 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 MQEVAF_MS01 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!
QLMSD_PROCESS_MULTIPLE_SPEC CALL FUNCTION 'QLMSD_PROCESS_MULTIPLE_SPEC' EXPORTING i_qals = l_qals i_insp_lot = l_qals-prueflos i_usage = 'U' i_display = l_display * I_IMPORT_SORTED_TABLES = 'X' i_refresh_alv_data = g_ms_valuated "see above i_progname = c_progname i_formname = c_formname TABLES i_qamktab = g_mktb i_qapptab = g_pptb.
QLMSM_GET_MEMORYTAB CALL FUNCTION 'QLMSM_GET_MEMORYTAB' EXPORTING i_prueflos = qals-prueflos * I_VORGLFNR = * I_MERKNR = * I_ENQUEUED = i_no_db_access = c_kreuz i_qals = qals IMPORTING E_MEMORYLINE_MS = l_memoryline_ms E_MEMORYTAB_MS = l_memorytab_ms EXCEPTIONS wrong_parameters = 1 not_found = 2 enqueue_not_possible = 3 OTHERS = 4 .
QLMSM_ENQUEUE_MEMORYTAB CALL FUNCTION 'QLMSM_ENQUEUE_MEMORYTAB' EXPORTING i_prueflos = qals-prueflos * I_VORGLFNR = i_qals = qals EXCEPTIONS no_mult_spec = 1 no_operation = 2 wrong_parameters = 3 OTHERS = 4 .
QLMSM_GET_VALUATION_PROPOSAL CALL FUNCTION 'QLMSM_GET_VALUATION_PROPOSAL' EXPORTING i_prueflos = qals-prueflos * IMPORTING * E_QAOBJMSTAB = .
QLMSM_VALUATE_FROM_PROPOSAL CALL FUNCTION 'QLMSM_VALUATE_FROM_PROPOSAL' EXPORTING i_prueflos = qals-prueflos IMPORTING e_rejected = l_rejected EXCEPTIONS not_in_memory = 1 OTHERS = 2.
QLMSM_GET_MEMORYTAB CALL FUNCTION 'QLMSM_GET_MEMORYTAB' EXPORTING i_prueflos = qals-prueflos * I_VORGLFNR = * I_MERKNR = * I_ENQUEUED = i_no_db_access = c_kreuz i_qals = qals IMPORTING e_memoryline_ms = l_memoryline_ms * E_MEMORYTAB_MS = EXCEPTIONS wrong_parameters = 1 not_found = 2 enqueue_not_possible = 3 OTHERS = 4 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.