IBRO_REPLIST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for List Display for Items in Broker Reports A list of broker report items is displayed for the selection criteria entered...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 IBRO_REPLIST into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
IBR07 - Search/List Broker Report Items
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_POSTST = D .
Selection Text: P_PARTNE = D .
Selection Text: P_INSOBJ = D .
Selection Text: P_IDENT = D .
Selection Text: P_CURR = D .
Selection Text: P_BROOBJ = D .
Selection Text: P_BROKER = D .
Selection Text: P_AMNTTR = D .
Selection Text: P_MAXNR = Maximum number of items
Selection Text: P_CREADT = Created on
Title: Search for items in broker reports
Text Symbol: 013 = Line Items for Broker Report &1& Item &2&
Text Symbol: 012 = Selected Broker Report Items
Text Symbol: 011 = Data has been read, list is being prepared
Text Symbol: 010 = Report &1 of &2 being searched
Text Symbol: 009 = Data is being read
Text Symbol: 008 = Hit list restriction
Text Symbol: 007 = Report restriction
Text Symbol: 006 = Display
Text Symbol: 005 = No
Text Symbol: 004 = Yes
Text Symbol: 003 = Do you still want to continue?
Text Symbol: 002 = Diagnosis
Text Symbol: 001 = Display broker reports list
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY call function 'REUSE_ALV_GRID_DISPLAY' exporting i_callback_program = g_repid i_callback_pf_status_set = gc_status_set_p i_callback_user_command = gc_user_command_p * I_STRUCTURE_NAME = is_layout = gs_layout i_grid_title = g_title it_fieldcat = gt_fieldcat_p it_sort = gt_sort_p i_save = 'A' tables t_outtab = gt_sibrostmp_list exceptions program_error = 1 others = 2.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting i_program_name = g_repid i_internal_tabname = gc_tabname_p i_structure_name = 'SIBROSTMP_LIST' i_client_never_display = 'X' changing ct_fieldcat = pt_fieldcat exceptions inconsistent_interface = 1 program_error = 2 others = 3.
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-002 diagnose_object = 'ISCD_BROK_PERCENT_NOTICE' text_question = text-003 text_button_1 = text-005 icon_button_1 = 'ICON_SYSTEM_UNDO' text_button_2 = text-004 icon_button_2 = 'ICON_OKAY' display_cancel_button = ' ' start_column = 20 start_row = 15 importing answer = c_answer tables parameter = lt_number_table.
SAPGUI_PROGRESS_INDICATOR call function 'SAPGUI_PROGRESS_INDICATOR' exporting text = text-009.
ISCD_DB_BRO_STMP_LIST_GET CALL FUNCTION 'ISCD_DB_BRO_STMP_LIST_GET' EXPORTING I_MAXROWS = l_maxnr TABLES IT_RANGE_IDENT = it_ident IT_RANGE_BROKER = it_broker IT_RANGE_BROOBJ = it_broobj IT_RANGE_PARTNER = it_partner IT_RANGE_INSOBJECT = it_insobj IT_RANGE_POSTSTATUS = it_post_status IT_RANGE_CURR = it_curr IT_RANGE_AMNTTR = it_amnttr IT_RANGE_CREADATE = it_creadate ET_SIBROSTMP_LIST = ct_sibrostmp_list EXCEPTIONS NOT_FOUND = 1 WRONG_PARAMETERS = 2 OTHERS = 3.
POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-002 diagnose_object = 'ISCD_BROK_NUMBER_NOTICE' text_question = text-003 text_button_1 = text-005 icon_button_1 = 'ICON_SYSTEM_UNDO' text_button_2 = text-004 icon_button_2 = 'ICON_OKAY' display_cancel_button = ' ' start_column = 25 start_row = 6 importing answer = c_answer tables parameter = lt_number_table.
FKK_BUPA_READ_SINGLE call function 'FKK_BUPA_READ_SINGLE' exporting i_partner = lwa_sibrostmp_list-broker_h importing e_but000 = ls_bus000 exceptions partner_not_found = 1 partner_in_role_not_found = 2 internal_error = 3 others = 4.
REUSE_ALV_GRID_DISPLAY call function 'REUSE_ALV_GRID_DISPLAY' exporting i_callback_program = g_repid i_callback_pf_status_set = gc_status_set_s i_callback_user_command = gc_user_command_s i_structure_name = 'IBROSTMS' is_layout = gs_layout i_grid_title = g_title * it_fieldcat = gt_fieldcat_s it_sort = gt_sort_s i_save = 'A' is_variant = vari "1458127 tables t_outtab = gt_ibrostms exceptions program_error = 1 others = 2.
FKK_FPE0_INIT call function 'FKK_FPE0_INIT'.
FKK_FPE0_START_TRANSACTION call function 'FKK_FPE0_START_TRANSACTION' exporting tcode = 'FPE3' opbel = lwa_ibrostms-opbel exceptions others = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.