SAP BAPI_BROKERREP_GETLIST Function Module for Use Selection Criteria to Read Broker Reports









BAPI_BROKERREP_GETLIST is a standard bapi brokerrep getlist SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Use Selection Criteria to Read Broker Reports 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 getlist FM, simply by entering the name BAPI_BROKERREP_GETLIST 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_GETLIST 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_GETLIST'"Use Selection Criteria to Read Broker Reports
EXPORTING
* MAXROWS = "Maximum Number of Lines of Hits
* INVOICINGPERIOD = "Invoicing Period (from-to)
* NO_AUTH_CHECK = "Do Not Execute Authorization Checks for User Data

TABLES
* RANGEBROKER = "BAPI: Ranges Structure for Business Partner (FI-CA)
* RANGEBROKERCONTRACT = "BAPI: Ranges Struct. for Ref. Specifs fm Contract (FI-CA)
* RANGESEARCHTERM = "Broker Report - BAPI Structure Broker Report Search Term
* RANGESTATUS = "Broker Report - BAPI Structure Broker Report Status
* EXTENSIONIN = "Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
* EXTENSIONOUT = "Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT
BROKERREPORTHEADERKEY = "Broker Report - BAPI Structure Broker Report Header
RETURN = "Return Parameters
.



IMPORTING Parameters details for BAPI_BROKERREP_GETLIST

MAXROWS - Maximum Number of Lines of Hits

Data type: BAPIBROKREPCTRL-MAX_ROWS
Optional: Yes
Call by Reference: No ( called with pass by value option)

INVOICINGPERIOD - Invoicing Period (from-to)

Data type: BAPIBROKER_PERIOD
Optional: 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_CHECK
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for BAPI_BROKERREP_GETLIST

RANGEBROKER - BAPI: Ranges Structure for Business Partner (FI-CA)

Data type: BAPIFKKR_GPART
Optional: Yes
Call by Reference: Yes

RANGEBROKERCONTRACT - BAPI: Ranges Struct. for Ref. Specifs fm Contract (FI-CA)

Data type: BAPIFKKR_VTREF
Optional: Yes
Call by Reference: Yes

RANGESEARCHTERM - Broker Report - BAPI Structure Broker Report Search Term

Data type: BAPIBROKER_RANGE_SEARCHKEY
Optional: Yes
Call by Reference: Yes

RANGESTATUS - Broker Report - BAPI Structure Broker Report Status

Data type: BAPIBROKER_RANGE_STATUS
Optional: Yes
Call by Reference: Yes

EXTENSIONIN - Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT

Data type: BAPIPAREX
Optional: Yes
Call by Reference: Yes

EXTENSIONOUT - Reference Structure for BAPI Parameters EXTENSIONIN/EXTENSIONOUT

Data type: BAPIPAREX
Optional: Yes
Call by Reference: Yes

BROKERREPORTHEADERKEY - Broker Report - BAPI Structure Broker Report Header

Data type: BAPIBROKREPHEADER_KEY
Optional: No
Call by Reference: Yes

RETURN - Return Parameters

Data type: BAPIRET2
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for BAPI_BROKERREP_GETLIST 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_rangebroker  TYPE STANDARD TABLE OF BAPIFKKR_GPART, "   
lv_invoicingperiod  TYPE BAPIBROKER_PERIOD, "   
lt_rangebrokercontract  TYPE STANDARD TABLE OF BAPIFKKR_VTREF, "   
lv_no_auth_check  TYPE BAPIBROKREPCTRL-NO_AUTH_CHECK, "   
lt_rangesearchterm  TYPE STANDARD TABLE OF BAPIBROKER_RANGE_SEARCHKEY, "   
lt_rangestatus  TYPE STANDARD TABLE OF BAPIBROKER_RANGE_STATUS, "   
lt_extensionin  TYPE STANDARD TABLE OF BAPIPAREX, "   
lt_extensionout  TYPE STANDARD TABLE OF BAPIPAREX, "   
lt_brokerreportheaderkey  TYPE STANDARD TABLE OF BAPIBROKREPHEADER_KEY, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'BAPI_BROKERREP_GETLIST'  "Use Selection Criteria to Read Broker Reports
    EXPORTING
         MAXROWS = lv_maxrows
         INVOICINGPERIOD = lv_invoicingperiod
         NO_AUTH_CHECK = lv_no_auth_check
    TABLES
         RANGEBROKER = lt_rangebroker
         RANGEBROKERCONTRACT = lt_rangebrokercontract
         RANGESEARCHTERM = lt_rangesearchterm
         RANGESTATUS = lt_rangestatus
         EXTENSIONIN = lt_extensionin
         EXTENSIONOUT = lt_extensionout
         BROKERREPORTHEADERKEY = lt_brokerreportheaderkey
         RETURN = lt_return
. " BAPI_BROKERREP_GETLIST




ABAP code using 7.40 inline data declarations to call FM BAPI_BROKERREP_GETLIST

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!