DBQMIF01 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 DBQMIF01 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: Include DBQMIF01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
F4_SELECT_SEARCH_HELP CALL FUNCTION 'F4_SELECT_SEARCH_HELP' EXPORTING shlpname_in = p_shlpname hot_key = h_hotkey * NO_USER_EXIT = * STARTING_X = 1 * STARTING_Y = 1 IMPORTING shlp_out = g_shlp fcode = h_fcode EXCEPTIONS invalid_hotkey = 1 internal_error = 2 OTHERS = 3.
F4_ENTER_SELECTIONS_LIGHT CALL FUNCTION 'F4_ENTER_SELECTIONS_LIGHT' EXPORTING shlp = g_shlp * NO_DIALOG = ' ' * no_complex = ' ' IMPORTING fcode = h_fcode TABLES selopt_tab = g_selopt_tab EXCEPTIONS invalid_arguments = 1 internal_error = 2 OTHERS = 3.
F4TOOL_GET_DEF_SHLP CALL FUNCTION 'F4TOOL_GET_DEF_SHLP' EXPORTING user = sy-uname top_shlp = 'PM_ADMC' IMPORTING def_shlp = h_def_shlp EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_CHECKED' info = p_text_on IMPORTING RESULT = p_icon EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_INCOMPLETE' info = p_text_off IMPORTING RESULT = p_icon 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.