EPM_REPORT_START 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 EPM_REPORT_START into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
EPM_REPORT_START - Start Report With Variant
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: P_REPORT = D Program Name
Selection Text: P_SOURCE = D KPI Source System
Selection Text: P_VARIAN = D Variant
Title: Program EPM_REPORT_START
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
OWN_LOGICAL_SYSTEM_GET CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET' IMPORTING own_logical_system = gv_own_system EXCEPTIONS OTHERS = 0.
EPM_DESTINATION_FOR_LOGSYS_GET CALL FUNCTION 'EPM_DESTINATION_FOR_LOGSYS_GET' EXPORTING i_logsys = p_source IMPORTING e_destination = gv_destination EXCEPTIONS OTHERS = 0.
EPM_DESTINATION_FOR_LOGSYS_GET CALL FUNCTION 'EPM_DESTINATION_FOR_LOGSYS_GET' EXPORTING i_logsys = gv_target_sys IMPORTING e_destination = gv_target_dest EXCEPTIONS OTHERS = 0.
EPM_KPI_DEFINITION_GET CALL FUNCTION 'EPM_KPI_DEFINITION_GET' DESTINATION gv_target_dest EXPORTING i_epm_program = p_report i_epm_variant = p_varian i_kpi_source_type = gc_source_type i_kpi_source = p_source i_langu = sy-langu i_uname = sy-uname IMPORTING es_kpi = gs_kpi EXCEPTIONS no_kpi_found = 1 missing_import_parameter = 2 OTHERS = 3.
EPM_DATA_INSERT_CODE_CREATE CALL FUNCTION 'EPM_DATA_INSERT_CODE_CREATE' DESTINATION gv_target_dest EXPORTING i_kpi_id = gs_kpi-kpi_id i_source = p_source IMPORTING e_insert_code = gv_insert_code.
RFC_CALL_TRANSACTION_USING CALL FUNCTION 'RFC_CALL_TRANSACTION_USING' DESTINATION gv_destination EXPORTING tcode = 'SA38' mode = 'E' TABLES bt_data = gt_bdcdata l_errors = gt_bdcmsgcoll EXCEPTIONS authority_not_available = 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.