I_SHOWEP2F 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 I_SHOWEP2F 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: FORM-Routinen
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RM_DOMAIN_VALUES_GET CALL FUNCTION 'RM_DOMAIN_VALUES_GET' EXPORTING i_name = 'AFWGO_STATUS2' i_langu = sy-langu i_read_texts = 'X' IMPORTING e_domain_values = lt_domain_values EXCEPTIONS illegal_input = 1 OTHERS = 2.
AFWGO_SHOW_EVALPROC2 CALL FUNCTION 'AFWGO_SHOW_EVALPROC2' EXPORTING i_evalproc2 = wa_ep2-evalproc2 i_date = wa_ep2-keydate EXCEPTIONS error = 1 OTHERS = 2.
AFWKF_SHOW_DEFINITION * CALL FUNCTION 'AFWKF_SHOW_DEFINITION' * EXPORTING * i_kfdef = l_keyfigure * EXCEPTIONS * error = 1 * OTHERS = 2.
ISB_RM_PH_GET * CALL FUNCTION 'ISB_RM_PH_GET' * EXPORTING * p_phid = l_phid * p_sicht = g_view * TABLES * it_jbrphbaum_f = it_jbrphbaum * it_htext_tab_f = it_jbrnamedat * EXCEPTIONS * no_hierarchy_found = 1 * no_assign_found = 2 * enqueue_error = 3 * OTHERS = 4.
ISB_RM_PH_SHOW * CALL FUNCTION 'ISB_RM_PH_SHOW' * TABLES * i_jbrphbaum = it_jbrphbaum * i_jbrnamedat = it_jbrnamedat * EXCEPTIONS * cancel = 1 * OTHERS = 2.
AFWCH_ACTIVE_DATASTR_GET CALL FUNCTION 'AFWCH_ACTIVE_DATASTR_GET' IMPORTING * e_datastr = g_analysis_structure e_internal_view = g_view.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.