MIEQ0F50 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 MIEQ0F50 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: Forms for Serial Number Processing in Equipment Management
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CALL_EXIT_SAPLIPW1_001 CALL FUNCTION 'CALL_EXIT_SAPLIPW1_001' EXPORTING operation = 'IQ04' number_serialno = risa0-anzahl material_no = risa0-matnr IMPORTING num_sernr = l_num_sernr TABLES tab_sernr = isernr.
READ_MASE CALL FUNCTION 'READ_MASE' EXPORTING material_nr = risa0-matnr sernr = isernr-sernr no_ser_enq = t370t-no_ser_enq TABLES imase = imase.
READ_MASE CALL FUNCTION 'READ_MASE' EXPORTING anzahl_neu = l_num_sernr material_nr = risa0-matnr no_ser_enq = t370t-no_ser_enq TABLES imase = imase isernr = isernr.
SERIAL_EXISTENCE_CHECK CALL FUNCTION 'SERIAL_EXISTENCE_CHECK' EXPORTING material = risa0-matnr serialnr = isernr-sernr EXCEPTIONS ser_exist = 01 ser_not_exist = 02.
ITOB_CHECK_SERIALNO CALL FUNCTION 'ITOB_CHECK_SERIALNO' EXPORTING matnr_imp = i_matnr sernr_imp = c_sernr t399j_imp = l_t399j enqueue_mode = 'X' mase_mode = l_mase_mode dialog_cursor = 'RISA0-SERNR' IMPORTING sernr_exp = l_sernr TABLES itab_mase = imase EXCEPTIONS application_error = 2 OTHERS = 3.
STATUS_TEXT_EDIT CALL FUNCTION 'STATUS_TEXT_EDIT' EXPORTING client = sy-mandt objnr = equi-objnr only_active = 'X' spras = sy-langu IMPORTING line = risa0-statusline EXCEPTIONS object_not_found = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.