MILL_IBASE is a standard Executable ABAP Report 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 MILL_IBASE 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.
Selection Text: I_VARS = Variants with Incorrect Owner
Selection Text: I_VARI = Layout
Selection Text: I_DOUBLE = Objects with Several Instances
Title: Program MILL_IBASE
Text Symbol: 004 = Find Duplicated Entries
Text Symbol: 003 = Check Variants at Plant Level
Text Symbol: 002 = Check Variants at Client Level
Text Symbol: 001 = Selection Options
INCLUDE MILL_IBASE_TOP.
INCLUDE MILL_IBASE_FORMS.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING i_save = g_variant_save CHANGING cs_variant = l_def_variant EXCEPTIONS not_found = 2.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' EXPORTING i_save = g_variant_save CHANGING cs_variant = l_def_variant.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-002.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-003.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = text-004.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.