BBP_TEST_IPC 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 BBP_TEST_IPC 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 MBTEMP002
Text Symbol: 001 = Quantity:
Text Symbol: 002 = Gross Price:
Text Symbol: 003 = Net Value:
Text Symbol: 004 = Net Price:
Text Symbol: 005 = Error Messages
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_16 = lv_header.
GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_16 = lv_p_guid.
BBP_PD_LOG_INITIALIZE call function 'BBP_PD_LOG_INITIALIZE'.
BBP_PD_LOG_DEFAULTS_SET call function 'BBP_PD_LOG_DEFAULTS_SET' exporting i_set_guid = 'A' i_set_type = 'PDPRC'.
BBP_PDPRC_UPDATE call function 'BBP_PDPRC_UPDATE' exporting i_p_guid = lv_p_guid i_p_kind = lv_p_kind i_header = lv_header i_object_type = lv_object_type i_com = ls_icom IV_INT_MSG = 'X' importing e_com = ls_ecom tables it_pridoc = lt_pridoc.
BBP_PDPRC_DB_UPDATE call function 'BBP_PDPRC_DB_UPDATE' exporting i_header = lv_header.
BBP_LINK_SAVE_OW call function 'BBP_LINK_SAVE_OW' exporting iv_guid_hdr = lv_header exceptions invalid_input_data = 1 function_not_practicable = 2 no_objects_to_save = 3 undefined_internal_error = 4 others = 5.
BBP_PDPRC_GETDETAIL CALL FUNCTION 'BBP_PDPRC_GETDETAIL' EXPORTING i_header = lv_header i_p_guid = lv_p_guid i_p_kind = lv_p_kind IV_INT_MSG = 'X' TABLES ET_PRIDOC = lt_pridoc.
BBP_PD_LOG_GET_MESSAGES CALL FUNCTION 'BBP_PD_LOG_GET_MESSAGES' TABLES e_messages = lt_messages.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.