EQ_FL_HEAL 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 EQ_FL_HEAL into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
IL21 - Heal from INHB
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: EQUIP = D .
Selection Text: FUNCLOC = D .
Title: Program EQ_FL_HEAL
Text Symbol: 001 = Take up Data Transfer (Mass)
Text Symbol: 002 = Select Objects
INCLUDE EQFLHEALTOP . " GLOBAL DATA
No SAP DATABASE tables are accessed within this REPORT code!
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = lv_log IMPORTING e_log_handle = lv_bal EXCEPTIONS OTHERS = 1.
IEQM_MESSAGE_STORE_HEAL CALL FUNCTION 'IEQM_MESSAGE_STORE_HEAL' EXPORTING iv_object = lv_object iv_log_handle = lv_bal is_messages = ls_message EXCEPTIONS log_error = 1 OTHERS = 2.
IEQM_EQUI_HEAL CALL FUNCTION 'IEQM_EQUI_HEAL' EXPORTING i_equnr = lv_equi log_bal = lv_bal ex_flag = exit_flag IMPORTING es_message = ls_message.
IREP1_LOCATION_CONVERSION CALL FUNCTION 'IREP1_LOCATION_CONVERSION' * EXPORTING * CHECK_MAXCOUNT = ' ' * I_ALKEY = ' ' TABLES i_strno_tab = funcloc e_tplnr_tab = lr_tplnr EXCEPTIONS not_found = 1 too_many_entries = 2 OTHERS = 3 .
IEQM_FL_HEAL CALL FUNCTION 'IEQM_FL_HEAL' EXPORTING i_funcloc = lv_funcloc log_bal = lv_bal ex_flag = exit_flag IMPORTING es_message = ls_message.
IEQM_MESSAGE_STORE_HEAL CALL FUNCTION 'IEQM_MESSAGE_STORE_HEAL' EXPORTING iv_object = lv_object iv_log_handle = lv_bal is_messages = ls_message EXCEPTIONS log_error = 1 OTHERS = 2.
IEQM_MESSAGE_LOG_DISPLAY_HEAL CALL FUNCTION 'IEQM_MESSAGE_LOG_DISPLAY_HEAL' EXPORTING iv_log_handle = lv_bal.
BAL_LOG_REFRESH CALL FUNCTION 'BAL_LOG_REFRESH' EXPORTING i_log_handle = lv_bal.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.