SAP BAPI_BROKERREP_GETLISTITEMS Function Module for Read Broker Report Items Using Selection Criteria
BAPI_BROKERREP_GETLISTITEMS is a standard bapi brokerrep getlistitems SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Broker Report Items Using Selection Criteria processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for bapi brokerrep getlistitems FM, simply by entering the name BAPI_BROKERREP_GETLISTITEMS into the relevant SAP transaction such as SE37 or SE38.
Function Group: IBRBAPI
Program Name: SAPLIBRBAPI
Main Program: SAPLIBRBAPI
Appliation area:
Release date: 21-Aug-2007
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPI_BROKERREP_GETLISTITEMS pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'BAPI_BROKERREP_GETLISTITEMS'"Read Broker Report Items Using Selection Criteria.
EXPORTING
* MAXROWS = "Maximum Number of Lines of Hits
* CURRENCY = "Currency Key
* RANGEAMOUNT = "Broker Report. BAPI Range Structure Amount for BRI
* RANGECREATIONDATE = "Broker Report. BAPI Range Structure Creation Data for BR
* NO_AUTH_CHECK = "Do Not Execute Authorization Checks for User Data
TABLES
* RANGEREPORT = "Broker Report. BAPI Range Structure Identification for BR
RETURN = "Return Parameters
* RANGEBROKER = "BAPI: Ranges Structure for Business Partner (FI-CA)
* RANGEBROKERCONTRACT = "BAPI: Ranges Struct. for Ref. Specifs fm Contract (FI-CA)
* RANGEPARTNER = "BAPI: Ranges Structure for Business Partner (FI-CA)
* RANGEINSOBJECT = "BAPI: Ranges Struct. for Ref. Specifs fm Contract (FI-CA)
* RANGEPOSTSTATUS = "Broker Report: BAPI Range Structure Posting Status for BRI
* EXTENSIONIN = "Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
* EXTENSIONOUT = "Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
BROKERREPORTITEMKEY = "Broker Report: BAPI Structure Item Data
IMPORTING Parameters details for BAPI_BROKERREP_GETLISTITEMS
MAXROWS - Maximum Number of Lines of Hits
Data type: BAPIBROKREPCTRL-MAX_ROWSOptional: Yes
Call by Reference: No ( called with pass by value option)
CURRENCY - Currency Key
Data type: BAPIBROKREPITEM_CURRENCYOptional: Yes
Call by Reference: No ( called with pass by value option)
RANGEAMOUNT - Broker Report. BAPI Range Structure Amount for BRI
Data type: BAPIBROKER_RANGE_AMOUNTOptional: Yes
Call by Reference: No ( called with pass by value option)
RANGECREATIONDATE - Broker Report. BAPI Range Structure Creation Data for BR
Data type: BAPIBROKER_RANGE_CRDATEOptional: Yes
Call by Reference: No ( called with pass by value option)
NO_AUTH_CHECK - Do Not Execute Authorization Checks for User Data
Data type: BAPIBROKREPCTRL-NO_AUTH_CHECKOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPI_BROKERREP_GETLISTITEMS
RANGEREPORT - Broker Report. BAPI Range Structure Identification for BR
Data type: BAPIBROKER_RANGE_REPORTOptional: Yes
Call by Reference: Yes
RETURN - Return Parameters
Data type: BAPIRET2Optional: No
Call by Reference: Yes
RANGEBROKER - BAPI: Ranges Structure for Business Partner (FI-CA)
Data type: BAPIFKKR_GPARTOptional: Yes
Call by Reference: Yes
RANGEBROKERCONTRACT - BAPI: Ranges Struct. for Ref. Specifs fm Contract (FI-CA)
Data type: BAPIFKKR_VTREFOptional: Yes
Call by Reference: Yes
RANGEPARTNER - BAPI: Ranges Structure for Business Partner (FI-CA)
Data type: BAPIFKKR_GPARTOptional: Yes
Call by Reference: Yes
RANGEINSOBJECT - BAPI: Ranges Struct. for Ref. Specifs fm Contract (FI-CA)
Data type: BAPIFKKR_VTREFOptional: Yes
Call by Reference: Yes
RANGEPOSTSTATUS - Broker Report: BAPI Range Structure Posting Status for BRI
Data type: BAPIBROKER_RANGE_POSTSTATUSOptional: Yes
Call by Reference: Yes
EXTENSIONIN - Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
Data type: BAPIPAREXOptional: Yes
Call by Reference: Yes
EXTENSIONOUT - Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
Data type: BAPIPAREXOptional: Yes
Call by Reference: Yes
BROKERREPORTITEMKEY - Broker Report: BAPI Structure Item Data
Data type: BAPIBROKREPITEM_KEYOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BAPI_BROKERREP_GETLISTITEMS Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_maxrows | TYPE BAPIBROKREPCTRL-MAX_ROWS, " | |||
| lt_rangereport | TYPE STANDARD TABLE OF BAPIBROKER_RANGE_REPORT, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_currency | TYPE BAPIBROKREPITEM_CURRENCY, " | |||
| lt_rangebroker | TYPE STANDARD TABLE OF BAPIFKKR_GPART, " | |||
| lv_rangeamount | TYPE BAPIBROKER_RANGE_AMOUNT, " | |||
| lt_rangebrokercontract | TYPE STANDARD TABLE OF BAPIFKKR_VTREF, " | |||
| lt_rangepartner | TYPE STANDARD TABLE OF BAPIFKKR_GPART, " | |||
| lv_rangecreationdate | TYPE BAPIBROKER_RANGE_CRDATE, " | |||
| lv_no_auth_check | TYPE BAPIBROKREPCTRL-NO_AUTH_CHECK, " | |||
| lt_rangeinsobject | TYPE STANDARD TABLE OF BAPIFKKR_VTREF, " | |||
| lt_rangepoststatus | TYPE STANDARD TABLE OF BAPIBROKER_RANGE_POSTSTATUS, " | |||
| lt_extensionin | TYPE STANDARD TABLE OF BAPIPAREX, " | |||
| lt_extensionout | TYPE STANDARD TABLE OF BAPIPAREX, " | |||
| lt_brokerreportitemkey | TYPE STANDARD TABLE OF BAPIBROKREPITEM_KEY. " |
|   CALL FUNCTION 'BAPI_BROKERREP_GETLISTITEMS' "Read Broker Report Items Using Selection Criteria |
| EXPORTING | ||
| MAXROWS | = lv_maxrows | |
| CURRENCY | = lv_currency | |
| RANGEAMOUNT | = lv_rangeamount | |
| RANGECREATIONDATE | = lv_rangecreationdate | |
| NO_AUTH_CHECK | = lv_no_auth_check | |
| TABLES | ||
| RANGEREPORT | = lt_rangereport | |
| RETURN | = lt_return | |
| RANGEBROKER | = lt_rangebroker | |
| RANGEBROKERCONTRACT | = lt_rangebrokercontract | |
| RANGEPARTNER | = lt_rangepartner | |
| RANGEINSOBJECT | = lt_rangeinsobject | |
| RANGEPOSTSTATUS | = lt_rangepoststatus | |
| EXTENSIONIN | = lt_extensionin | |
| EXTENSIONOUT | = lt_extensionout | |
| BROKERREPORTITEMKEY | = lt_brokerreportitemkey | |
| . " BAPI_BROKERREP_GETLISTITEMS | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_BROKERREP_GETLISTITEMS
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single MAX_ROWS FROM BAPIBROKREPCTRL INTO @DATA(ld_maxrows). | ||||
| "SELECT single NO_AUTH_CHECK FROM BAPIBROKREPCTRL INTO @DATA(ld_no_auth_check). | ||||
Search for further information about these or an SAP related objects