SAP CBDU_BU05_DGREL_SAVE_IOT_BUF Function Module for NOTRANSL: Iotab und Puffer auf Datenbank schreiben









CBDU_BU05_DGREL_SAVE_IOT_BUF is a standard cbdu bu05 dgrel save iot buf SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Iotab und Puffer auf Datenbank schreiben 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 cbdu bu05 dgrel save iot buf FM, simply by entering the name CBDU_BU05_DGREL_SAVE_IOT_BUF into the relevant SAP transaction such as SE37 or SE38.

Function Group: CBDU_BU05
Program Name: SAPLCBDU_BU05
Main Program: SAPLCBDU_BU05
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CBDU_BU05_DGREL_SAVE_IOT_BUF 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 'CBDU_BU05_DGREL_SAVE_IOT_BUF'"NOTRANSL: Iotab und Puffer auf Datenbank schreiben
EXPORTING
* I_FLG_IN_UPDATE_TASK = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
E_FLG_CHANGENUM_COLL = "Indicator: Change number collision

TABLES
X_IOTAB = "EHS: IOTAB for Product Release
X_IOTAB_DEL = "EHS: IOTAB for Product Release
.



IMPORTING Parameters details for CBDU_BU05_DGREL_SAVE_IOT_BUF

I_FLG_IN_UPDATE_TASK - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

EXPORTING Parameters details for CBDU_BU05_DGREL_SAVE_IOT_BUF

E_FLG_CHANGENUM_COLL - Indicator: Change number collision

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

TABLES Parameters details for CBDU_BU05_DGREL_SAVE_IOT_BUF

X_IOTAB - EHS: IOTAB for Product Release

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

X_IOTAB_DEL - EHS: IOTAB for Product Release

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

Copy and paste ABAP code example for CBDU_BU05_DGREL_SAVE_IOT_BUF 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_x_iotab  TYPE STANDARD TABLE OF RCBDUDGRELIOT, "   
lv_e_flg_changenum_coll  TYPE RCGRHBUF-CHCOFLG, "   
lv_i_flg_in_update_task  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lt_x_iotab_del  TYPE STANDARD TABLE OF RCBDUDGRELIOT. "   

  CALL FUNCTION 'CBDU_BU05_DGREL_SAVE_IOT_BUF'  "NOTRANSL: Iotab und Puffer auf Datenbank schreiben
    EXPORTING
         I_FLG_IN_UPDATE_TASK = lv_i_flg_in_update_task
    IMPORTING
         E_FLG_CHANGENUM_COLL = lv_e_flg_changenum_coll
    TABLES
         X_IOTAB = lt_x_iotab
         X_IOTAB_DEL = lt_x_iotab_del
. " CBDU_BU05_DGREL_SAVE_IOT_BUF




ABAP code using 7.40 inline data declarations to call FM CBDU_BU05_DGREL_SAVE_IOT_BUF

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 CHCOFLG FROM RCGRHBUF INTO @DATA(ld_e_flg_changenum_coll).
 
DATA(ld_i_flg_in_update_task) = ESP1_FALSE.
 
 


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!