BBP_CTR_INF_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 BBP_CTR_INF_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.
Selection Text: SO_ATT = Retrieve Attachments
Selection Text: SO_CTR = D .
Selection Text: SO_CTRIT = D .
Selection Text: SO_ITM = Retrieve Item List
Selection Text: SO_LANGU = Language
Selection Text: SO_LOGS = Logical System
Selection Text: SO_LTT = Retrieve Long Texts
Selection Text: SO_PART = Retrieve Partner Data
Title: Test Report for Contract Interfaces
Text Symbol: 001 = Help
Text Symbol: 002 = Enter a Valid Logical System
Text Symbol: 003 = Last record reached.
INCLUDE BBP_CTR_INF_TEST_TOP . " GLOBAL DATA
No SAP DATABASE tables are accessed within this REPORT code!
BBP_PD_CTR_GETLIST CALL FUNCTION 'BBP_PD_CTR_GETLIST' TABLES i_range_object_id = so_ctr e_pdlist = lt_pdlist_ctr e_messages = lt_pd_messages.
BBP_CTR_UI_AUTHORITY_CHECK CALL FUNCTION 'BBP_CTR_UI_AUTHORITY_CHECK' EXPORTING iv_activity = '03' iv_header_guid = ls_pdlist_ctr-GUID EXCEPTIONS no_authorization = 1 OTHERS = 2.
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_no iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message_tmp.
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_min iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message et_item = lt_item .
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_min iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message et_attach = lt_attach et_item = lt_item .
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_min iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message et_longtext = lt_longtext et_item = lt_item .
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_no iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message et_longtext = lt_longtext .
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_no iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message et_attach = lt_attach et_longtext = lt_longtext.
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_no iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message et_attach = lt_attach .
BBP_CTR_INF_DATA_GET CALL FUNCTION 'BBP_CTR_INF_DATA_GET' EXPORTING iv_contract_id = ls_pdlist_ctr-object_id iv_read_partner = so_part iv_item_id = ls_item_no iv_langu = so_langu iv_logical_system = so_logs IMPORTING es_ctr_header = ls_ctr_header es_item = ls_item TABLES et_message = lt_message et_attach = lt_attach et_longtext = lt_longtext et_item = lt_item .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.