MIHIXF60 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 MIHIXF60 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!
IB_CONVERT_INTO_TIMESTAMP CALL FUNCTION 'IB_CONVERT_INTO_TIMESTAMP' EXPORTING i_datlo = g_datum i_timlo = sy-timlo IMPORTING e_timestamp = h_timestamp_now.
IB_COM_FIND_INST_FOR_OBJECT CALL FUNCTION 'IB_COM_FIND_INST_FOR_OBJECT' EXPORTING i_ibco_handle = g_ibase_handle i_ibtyp = '01' i_ibrecval = h_ibrecval i_object = h_equipment CHANGING c_obj_tab = h_obj_tab.
IB_COM1_READ_IBASE CALL FUNCTION 'IB_COM1_READ_IBASE' EXPORTING i_ibco_handle = g_ibase_handle i_ibase = h_obj_wa-ibase i_moment = h_timestamp_now i_asked_data = ibxx_asked_data_d01 IMPORTING e_instance_tab = h_instance_tab e_structure_tab = h_structure_tab.
IB_COM1_READ_INSTANCE_TO_LEVEL CALL FUNCTION 'IB_COM1_READ_INSTANCE_TO_LEVEL' EXPORTING i_ibco_handle = g_ibase_handle i_ibase = h_obj_wa-ibase i_moment = h_timestamp_now i_par = h_par_wa i_marked_obj_tab = h_marked_obj_tab IMPORTING e_instance_tab1 = h_instance_tab e_structure_tab1 = h_structure_tab.
IB_COM_NEW CALL FUNCTION 'IB_COM_NEW' IMPORTING e_ibco_handle = g_ibase_handle.
IB_CONVERT_FROM_TIMESTAMP CALL FUNCTION 'IB_CONVERT_FROM_TIMESTAMP' EXPORTING i_timestamp = p_valto IMPORTING e_datlo = p_date e_timlo = p_time.
IB_CONVERT_INTO_TIMESTAMP CALL FUNCTION 'IB_CONVERT_INTO_TIMESTAMP' EXPORTING i_datlo = g_datum i_timlo = sy-timlo i_tzone = sy-zonlo IMPORTING e_timestamp = l_moment.
IB_COM1_READ_IBASE CALL FUNCTION 'IB_COM1_READ_IBASE' EXPORTING i_ibco_handle = g_ibase_handle i_ibase = i_ibase i_moment = l_moment i_asked_data = l_asked_data IMPORTING e_ibib1 = l_ibib1 e_ibibt1 = l_ibibt1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.