UPX_API_TEST 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 UPX_API_TEST 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: Program UPXTB_TEST_3
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
UPX_API_RELEASE call function 'UPX_API_RELEASE' importing e_release = l_release.
UPX_API_INIT call function 'UPX_API_INIT'.
UPX_API_DONE call function 'UPX_API_DONE' exporting i_post = space.
UPX_API_TASK_ALL call function 'UPX_API_TASK_ALL' tables et_task = lt_task.
UPX_API_TASK_EXEC call function 'UPX_API_TASK_EXEC' exporting i_task = is_task-task tables et_return = gt_return.
UPX_API_TASK_DONE call function 'UPX_API_TASK_DONE' tables et_return = gt_return.
UPX_API_ITEM_ALL call function 'UPX_API_ITEM_ALL' tables et_item = lt_item et_layout = lt_layout et_return = gt_return.
UPX_API_ITEM_EXEC call function 'UPX_API_ITEM_EXEC' exporting i_item = i_item tables et_return = gt_return.
UPX_API_ITEM_DONE call function 'UPX_API_ITEM_DONE' tables et_return = gt_return.
UPX_API_DATA_GET call function 'UPX_API_DATA_GET' exporting i_layout = i_layout * IMPORTING * ES_INFO = tables * ET_FUNCTION = * ET_HEAD_INFO = et_head = lt_head * ET_ROW_INFO = * ET_ROW = ET_ROW_TEXT = lt_row_text * ET_COL_INFO = * ET_COL = * ET_COL_TEXT = * ET_DATA = et_return = gt_return.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.