BBP_TREX_SEARCH_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_TREX_SEARCH_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: P_ATTNA2 = Attribute Name 2
Selection Text: P_ATTNA3 = Attribute Name 3
Selection Text: P_ATTNA4 = Attribute Name 4
Selection Text: P_ATTNAM = Attribute Name 1
Selection Text: P_ATTVA2 = Attribute Value 2
Selection Text: P_ATTVA3 = Attribute Value 3
Selection Text: P_ATTVA4 = Attribute Value 4
Selection Text: P_ATTVAL = Attribute Value 1
Selection Text: P_BUSOBJ = Business Object
Selection Text: P_KEYW = Full Text Search
Selection Text: P_SUBTYP = Subtype Business Object
Title: BBP TREX Search Test
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BBP_TREX_CHECK_SEARCH CALL FUNCTION 'BBP_TREX_CHECK_SEARCH' EXPORTING iv_object_type = p_busobj iv_subtype = p_subtyp IMPORTING ev_search_possible = lv_search_possible TABLES et_messages = gt_messages .
BBP_TREX_SEARCH_DOCUMENTS CALL FUNCTION 'BBP_TREX_SEARCH_DOCUMENTS' EXPORTING iv_object_type = p_busobj iv_subtype = p_subtyp * IV_INDEX_STATUS = 'S' iv_keywords = lv_keywords it_attributes = lt_attributes IMPORTING et_guid_result_list = gt_guid_result_list TABLES et_messages = gt_messages EXCEPTIONS conversion_error = 1 error = 2 OTHERS = 3 .
BBP_TREX_DEQUEUE_INDEX CALL FUNCTION 'BBP_TREX_DEQUEUE_INDEX' EXPORTING iv_object_type = p_busobj iv_subtype = p_subtyp iv_index_status = 'S' iv_enqmode = 'S' TABLES et_messages = gt_messages .
BBP_PD_CTR_GETDETAIL CALL FUNCTION 'BBP_PD_CTR_GETDETAIL' EXPORTING i_guid = ls_guid_result-bbp_guid * I_OBJECT_ID = * I_ATTACH_WITH_DOC = ' ' i_with_itemdata = ' ' * I_READ_BE_DATA = ' ' * I_DISP_CURRENCY = * I_DISP_DATE = IMPORTING e_header = ls_header * ET_ATTACH = * ET_CONDITIONS = * TABLES * E_ITEM = * E_PARTNER = * E_LONGTEXT = * E_ORGDATA = * E_MESSAGES = * E_HCF = * E_ICF = * E_ACTVAL = * E_ACC_ACTVAL = * E_HEADER_REL = * E_ITMLIM_REL = * E_TOL = * E_STATUS = * E_VERSION = .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.