RITOB_IBASE_CREATE 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 RITOB_IBASE_CREATE 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: LT_TPL = D Functional Location
Selection Text: LT_EQUI = D Equipment
Title: Program RITOB_IBASE_CREATE
Text Symbol: 004 = Cancel
Text Symbol: 003 = Ye
Text Symbol: 002 = Do you realy want to create all IBases (possibly long runtime)
Text Symbol: 001 = Program 'ITOB_IBASE_CREATE': IBase Creation from Interim Table
INCLUDE RITOB_IBASE_CREATE_TOP.
INCLUDE RITOB_IBASE_CREATE_F01.
No SAP DATABASE tables are accessed within this REPORT code!
II_INIT_GET_IBASE_TYPE CALL FUNCTION 'II_INIT_GET_IBASE_TYPE' IMPORTING ed_ib_typ = ld_ibtyp EXCEPTIONS no_sync_active = 1 no_type_defined = 2 OTHERS = 3.
II_INIT_GET_SYNC_STATUS CALL FUNCTION 'II_INIT_GET_SYNC_STATUS' IMPORTING ed_sync_status = ld_sync_status EXCEPTIONS OTHERS = 1.
IB_COM1_PROCESS_INSTANCE_02 CALL FUNCTION 'IB_COM1_PROCESS_INSTANCE_02' EXPORTING i_ibco_handle = ld_handle i_ibase = ld_ibase i_valfr = ld_moment i_process_rec = lt_proc_rec CHANGING c_instance_tab = lt_instance[] c_structure_tab = lt_struc[] EXCEPTIONS ib_handle_not_defined = 1 ib_no_activity = 2 ib_nothing_processed = 3 ib_inconsistend_data = 4 OTHERS = 5.
IB_COM_SAVE_AND_FREE CALL FUNCTION 'IB_COM_SAVE_AND_FREE' EXPORTING i_ibco_handle = ld_handle EXCEPTIONS ib_handle_not_defined = 1 ib_not_successful = 2 OTHERS = 3.
IB_COM1_PROCESS_INSTANCE_02 CALL FUNCTION 'IB_COM1_PROCESS_INSTANCE_02' EXPORTING i_ibco_handle = ld_handle i_ibase = ld_ibase i_valfr = ld_moment i_process_rec = lt_proc_rec CHANGING c_instance_tab = lt_instance[] c_structure_tab = lt_struc[] EXCEPTIONS ib_handle_not_defined = 1 ib_no_activity = 2 ib_nothing_processed = 3 ib_inconsistend_data = 4 OTHERS = 5.
IB_COM_SAVE_AND_FREE CALL FUNCTION 'IB_COM_SAVE_AND_FREE' EXPORTING i_ibco_handle = ld_handle EXCEPTIONS ib_handle_not_defined = 1 ib_not_successful = 2 OTHERS = 3.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-001 text_question = text-002 text_button_1 = text-003 icon_button_1 = 'ICON_OKAY' * text_button_2 = text-004 * icon_button_2 = 'ICON_CANCEL' default_button = '1' start_column = 25 start_row = 6 IMPORTING answer = answer EXCEPTIONS text_not_found = 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.