EAML_IQS4F01 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 EAML_IQS4F01 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 EAML_IQS4F01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
EQUIPMENT_READ_DISPLAY CALL FUNCTION 'EQUIPMENT_READ_DISPLAY' EXPORTING check_auth = abap_true equi_no = p_equnr reading_date = sy-datum time = sy-uzeit IMPORTING iloa = ls_iloa equi = ls_equi EXCEPTIONS auth_no_begrp = 1 auth_no_iwerk = 2 auth_no_swerk = 3 eqkt_not_found = 4 equi_not_found = 5 equz_not_found = 6 iloa_not_found = 7 auth_no_ingrp = 8 auth_no_kostl = 9 auth_no_badi = 10 OTHERS = 11.
FUNC_LOCATION_READ CALL FUNCTION 'FUNC_LOCATION_READ' EXPORTING auth_check = abap_true tplnr = p_tplnr IMPORTING iflo_wa = ls_iflo EXCEPTIONS iflot_not_found = 1 iloa_not_found = 2 no_authority = 3 OTHERS = 4.
PM_CHECK_OBJECT_STATUS CALL FUNCTION 'PM_CHECK_OBJECT_STATUS' EXPORTING i_eq_objnr = ls_equi-objnr i_tp_objnr = ls_iflo-objnr i_n_equnr = p_equnr i_n_tplnr = p_tplnr i_aktyp = yaktyph i_prot = yspace EXCEPTIONS status_not_allowed = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.