SAP ISCD_BROK_STM_BAPI_BUFFER_GET Function Module for









ISCD_BROK_STM_BAPI_BUFFER_GET is a standard iscd brok stm bapi buffer get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 iscd brok stm bapi buffer get FM, simply by entering the name ISCD_BROK_STM_BAPI_BUFFER_GET 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): Normal Function Module
Update:



Function ISCD_BROK_STM_BAPI_BUFFER_GET 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 'ISCD_BROK_STM_BAPI_BUFFER_GET'"
EXPORTING
* IX_IBROSTMH = "
* I_SUBPOSNUMB = "
* I_POSNUMB = "
* IX_NO_ERROR = "
* I_GRPNUMB = "
* IX_IBROSTMP = "
* IX_IBROSTMS = "
* IX_IBROSTMDOC = "
* IX_IBROSTMCF = "
* IX_IBROSTMDFLT = "
* IX_IBROSTMWDGRP = "
* IX_FKKCL = "
I_REPORT = "

IMPORTING
ES_IBROSTMH = "
ES_IBROSTMP = "
ES_IBROSTMCF = "

TABLES
* ET_IBROSTMS = "
* ET_IBROSTMDOC = "
* ET_IBROSTMDFLT = "
* ET_IBROSTMP = "
* ET_IBROSTMCF = "
* ET_IBROSTMWDGRP = "
* ET_FKKCL = "
.



IMPORTING Parameters details for ISCD_BROK_STM_BAPI_BUFFER_GET

IX_IBROSTMH -

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

I_SUBPOSNUMB -

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

I_POSNUMB -

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

IX_NO_ERROR -

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

I_GRPNUMB -

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

IX_IBROSTMP -

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

IX_IBROSTMS -

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

IX_IBROSTMDOC -

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

IX_IBROSTMCF -

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

IX_IBROSTMDFLT -

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

IX_IBROSTMWDGRP -

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

IX_FKKCL -

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

I_REPORT -

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

EXPORTING Parameters details for ISCD_BROK_STM_BAPI_BUFFER_GET

ES_IBROSTMH -

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

ES_IBROSTMP -

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

ES_IBROSTMCF -

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

TABLES Parameters details for ISCD_BROK_STM_BAPI_BUFFER_GET

ET_IBROSTMS -

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

ET_IBROSTMDOC -

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

ET_IBROSTMDFLT -

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

ET_IBROSTMP -

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

ET_IBROSTMCF -

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

ET_IBROSTMWDGRP -

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

ET_FKKCL -

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

Copy and paste ABAP code example for ISCD_BROK_STM_BAPI_BUFFER_GET 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_es_ibrostmh  TYPE IBROSTMH, "   
lt_et_ibrostms  TYPE STANDARD TABLE OF IBROSTMS, "   
lv_ix_ibrostmh  TYPE XFELD, "   
lv_i_subposnumb  TYPE SUBPOSNUMB_BRO, "   
lv_i_posnumb  TYPE POSNUMB_BRO, "   
lv_ix_no_error  TYPE XFELD, "   
lv_i_grpnumb  TYPE WDGRPNUMB_BRO, "   
lv_es_ibrostmp  TYPE IBROSTMP, "   
lv_ix_ibrostmp  TYPE XFELD, "   
lt_et_ibrostmdoc  TYPE STANDARD TABLE OF IBROSTMDOC, "   
lv_ix_ibrostms  TYPE XFELD, "   
lv_es_ibrostmcf  TYPE IBROSTMCF, "   
lt_et_ibrostmdflt  TYPE STANDARD TABLE OF IBROSTMDFLT, "   
lt_et_ibrostmp  TYPE STANDARD TABLE OF IBROSTMP, "   
lv_ix_ibrostmdoc  TYPE XFELD, "   
lt_et_ibrostmcf  TYPE STANDARD TABLE OF IBROSTMCF, "   
lv_ix_ibrostmcf  TYPE XFELD, "   
lv_ix_ibrostmdflt  TYPE XFELD, "   
lt_et_ibrostmwdgrp  TYPE STANDARD TABLE OF SIBRWDGRP, "   
lt_et_fkkcl  TYPE STANDARD TABLE OF FKKCL, "   
lv_ix_ibrostmwdgrp  TYPE XFELD, "   
lv_ix_fkkcl  TYPE XFELD, "   
lv_i_report  TYPE STMIDENT_BRO. "   

  CALL FUNCTION 'ISCD_BROK_STM_BAPI_BUFFER_GET'  "
    EXPORTING
         IX_IBROSTMH = lv_ix_ibrostmh
         I_SUBPOSNUMB = lv_i_subposnumb
         I_POSNUMB = lv_i_posnumb
         IX_NO_ERROR = lv_ix_no_error
         I_GRPNUMB = lv_i_grpnumb
         IX_IBROSTMP = lv_ix_ibrostmp
         IX_IBROSTMS = lv_ix_ibrostms
         IX_IBROSTMDOC = lv_ix_ibrostmdoc
         IX_IBROSTMCF = lv_ix_ibrostmcf
         IX_IBROSTMDFLT = lv_ix_ibrostmdflt
         IX_IBROSTMWDGRP = lv_ix_ibrostmwdgrp
         IX_FKKCL = lv_ix_fkkcl
         I_REPORT = lv_i_report
    IMPORTING
         ES_IBROSTMH = lv_es_ibrostmh
         ES_IBROSTMP = lv_es_ibrostmp
         ES_IBROSTMCF = lv_es_ibrostmcf
    TABLES
         ET_IBROSTMS = lt_et_ibrostms
         ET_IBROSTMDOC = lt_et_ibrostmdoc
         ET_IBROSTMDFLT = lt_et_ibrostmdflt
         ET_IBROSTMP = lt_et_ibrostmp
         ET_IBROSTMCF = lt_et_ibrostmcf
         ET_IBROSTMWDGRP = lt_et_ibrostmwdgrp
         ET_FKKCL = lt_et_fkkcl
. " ISCD_BROK_STM_BAPI_BUFFER_GET




ABAP code using 7.40 inline data declarations to call FM ISCD_BROK_STM_BAPI_BUFFER_GET

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!