MIEQUI30 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 MIEQUI30 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!
STATUS_READ CALL FUNCTION 'STATUS_READ' EXPORTING objnr = p_objnr only_active = 'X' TABLES status = h_status_tab EXCEPTIONS object_not_found = 01.
STATUS_NUMBER_CONVERSION CALL FUNCTION 'STATUS_NUMBER_CONVERSION' EXPORTING language = sy-langu objnr = p_objnr status_number = h_status_tab-stat IMPORTING txt04 = h_status_text_tab-txt04 EXCEPTIONS OTHERS = 01.
AUTHORITY_CHECK_EQUI CALL FUNCTION 'AUTHORITY_CHECK_EQUI' EXPORTING w_equi = ls_equi w_equz = ls_equz w_iloa = ls_iloa tcode = f_tcode i_tcode_check = ' ' i_call_badi = 'X' EXCEPTIONS no_authority_tcode = 1 no_authority_begrp = 2 no_authority_iwerk = 3 no_authority_ingrp = 4 no_authority_swerk = 5 no_authority_kostl = 6 no_profile_in_user_master_data = 7 error_in_user_master_data = 8 no_authority_badi = 9 OTHERS = 10.
STATUS_NUMBER_CONVERSION CALL FUNCTION 'STATUS_NUMBER_CONVERSION' EXPORTING client = sy-mandt language = sy-langu objnr = ' ' status_number = status_not_permitting-istat stsma = ' ' IMPORTING language_found = h_langu txt04 = stae1-low EXCEPTIONS insufficient_input = 01 object_not_found = 02 status_not_found = 03 stsma_not_found = 04.
OBJECT_KEY_GET CALL FUNCTION 'OBJECT_KEY_GET' EXPORTING i_objnr =
IMPORTING e_ionra = h_ionra EXCEPTIONS OTHERS = 1.
OBJECT_KEY_GET CALL FUNCTION 'OBJECT_KEY_GET' EXPORTING i_objnr =
-objnr IMPORTING e_ionra = h_ionra EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.