SAP G_BEB_BUFFER_CONTROL_TAB Function Module for









G_BEB_BUFFER_CONTROL_TAB is a standard g beb buffer control tab 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 g beb buffer control tab FM, simply by entering the name G_BEB_BUFFER_CONTROL_TAB into the relevant SAP transaction such as SE37 or SE38.

Function Group: GLT2
Program Name: SAPLGLT2
Main Program: SAPLGLT2
Appliation area: G
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function G_BEB_BUFFER_CONTROL_TAB 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 'G_BEB_BUFFER_CONTROL_TAB'"
EXPORTING
* I_METHOD = "Splitting method
* I_PROCESS = "Business process
* I_VARIANT = "Business process variant
* I_READ = "Read Data from Buffer
* I_INIT_FROM_DATABASE = "

TABLES
* T_T8G20 = "
* T_T8G21 = "
* T_T8G21A = "
* T_T8G22 = "

EXCEPTIONS
NOTHING_FOUND = 1
.



IMPORTING Parameters details for G_BEB_BUFFER_CONTROL_TAB

I_METHOD - Splitting method

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

I_PROCESS - Business process

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

I_VARIANT - Business process variant

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

I_READ - Read Data from Buffer

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

I_INIT_FROM_DATABASE -

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

TABLES Parameters details for G_BEB_BUFFER_CONTROL_TAB

T_T8G20 -

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

T_T8G21 -

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

T_T8G21A -

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

T_T8G22 -

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

EXCEPTIONS details

NOTHING_FOUND -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for G_BEB_BUFFER_CONTROL_TAB 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:
lt_t_t8g20  TYPE STANDARD TABLE OF T8G20, "   
lv_i_method  TYPE T8G01-SPLITMETHD, "   
lv_nothing_found  TYPE T8G01, "   
lt_t_t8g21  TYPE STANDARD TABLE OF T8G21, "   
lv_i_process  TYPE T8G03-PROCESS, "   
lt_t_t8g21a  TYPE STANDARD TABLE OF T8G21A, "   
lv_i_variant  TYPE T8G031-VARIANT, "   
lv_i_read  TYPE GLT0_FLAG, "   
lt_t_t8g22  TYPE STANDARD TABLE OF T8G22, "   
lv_i_init_from_database  TYPE GLT0_FLAG. "   

  CALL FUNCTION 'G_BEB_BUFFER_CONTROL_TAB'  "
    EXPORTING
         I_METHOD = lv_i_method
         I_PROCESS = lv_i_process
         I_VARIANT = lv_i_variant
         I_READ = lv_i_read
         I_INIT_FROM_DATABASE = lv_i_init_from_database
    TABLES
         T_T8G20 = lt_t_t8g20
         T_T8G21 = lt_t_t8g21
         T_T8G21A = lt_t_t8g21a
         T_T8G22 = lt_t_t8g22
    EXCEPTIONS
        NOTHING_FOUND = 1
. " G_BEB_BUFFER_CONTROL_TAB




ABAP code using 7.40 inline data declarations to call FM G_BEB_BUFFER_CONTROL_TAB

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 SPLITMETHD FROM T8G01 INTO @DATA(ld_i_method).
 
 
 
"SELECT single PROCESS FROM T8G03 INTO @DATA(ld_i_process).
 
 
"SELECT single VARIANT FROM T8G031 INTO @DATA(ld_i_variant).
 
 
 
 


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!