SAP Reports / Programs

UPC_BENCHMARK_EXECUTE SAP ABAP Report - Execute Benchmark Scenarios







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT UPC_BENCHMARK_EXECUTE. "Basic submit
SUBMIT UPC_BENCHMARK_EXECUTE AND RETURN. "Return to original report after report execution complete
SUBMIT UPC_BENCHMARK_EXECUTE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT UPC_BENCHMARK_EXECUTE

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name UPC_BENCHMARK_EXECUTE or its description.