UPC_BENCHMARK_EXECUTE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Executing Benchmark Scenarios for SEM-BPS This program is used to call up functions, which are contained in benchmark scenarios, in a specific sequence and to log the performance or memory times...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter UPC_BENCHMARK_EXECUTE 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.
Selection Text: AREA = D Planning Area
Selection Text: BATCH = Execution in Batch
Selection Text: RANGE = Execution Steps
Selection Text: VARIANTE = Script Name
Title: Execute Benchmark Scenarios
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING * I_BUFFER_ACTIVE = i_structure_name = 'YT_SCRIPTLINE' * I_CLIENT_NEVER_DISPLAY = 'X' * I_BYPASSING_BUFFER = CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS INCONSISTENT_INTERFACE = 1 PROGRAM_ERROR = 2 OTHERS = 3.
UPC_FW_START CALL FUNCTION 'UPC_FW_START' EXPORTING * I_PROFILE = i_node_type = 'PARAM' i_area = ls_scriptline-l_area i_plevel = ls_scriptline-l_plevel i_package = ls_scriptline-l_package i_method = ls_scriptline-l_method i_param = ls_scriptline-l_param i_fcode = 'MP_CHANGE' * I_HIDE_TREES = * I_FW_CALL = * IMPORTING * E_TR_DATA_CHANGED = * TABLES * ET_MESG = lt_return * EXCEPTIONS * OBJECT_NOT_EXISTING = 1 * PROFILE_NOT_EXISTING = 2 * ERROR_INIT = 3 * OTHERS = 4 .
API_SEMBPS_FUNCTION_EXECUTE CALL FUNCTION 'API_SEMBPS_FUNCTION_EXECUTE' EXPORTING i_area = ls_scriptline-l_area i_plevel = ls_scriptline-l_plevel i_package = ls_scriptline-l_package i_function = ls_scriptline-l_method i_param = ls_scriptline-l_param IMPORTING e_subrc = l_subrc TABLES etk_return = lt_return.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = l_indicator_text.
API_SEMBPS_POST CALL FUNCTION 'API_SEMBPS_POST' IMPORTING e_subrc = l_subrc es_return = ls_return.
API_SEMBPS_REFRESH CALL FUNCTION 'API_SEMBPS_REFRESH' IMPORTING e_subrc = l_subrc es_return = ls_return.
POPUP_GET_VALUES CALL FUNCTION 'POPUP_GET_VALUES' EXPORTING POPUP_TITLE = POPUP_TITLE IMPORTING RETURNCODE = RETURNCODE TABLES FIELDS = FIELDS.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.