SAP CBRC_LIB_EHS_DATA_UPDATE Function Module for NOTRANSL: Aktualisieren der Daten aus dem Eigenschaftsbaum









CBRC_LIB_EHS_DATA_UPDATE is a standard cbrc lib ehs data update 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: Aktualisieren der Daten aus dem Eigenschaftsbaum 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 cbrc lib ehs data update FM, simply by entering the name CBRC_LIB_EHS_DATA_UPDATE into the relevant SAP transaction such as SE37 or SE38.

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



Function CBRC_LIB_EHS_DATA_UPDATE 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 'CBRC_LIB_EHS_DATA_UPDATE'"NOTRANSL: Aktualisieren der Daten aus dem Eigenschaftsbaum
EXPORTING
* I_FLG_FULL_INIT = "
I_REG_TAB = "Table Type for CCRCS_REG
I_DET_TAB = "Table Type for CCRCC_DET
* I_MATNR_SUB_TAB = "Table Type Standard Error
* I_SUBID_TAB = "SELECT-OPTIONS Table
* I_REG = "Regulatory List
* I_WA_DET = "EHS: Data Determination Modules per Regulation/Scenario
I_RFCDEST = "Logical Destination (Specified when Calling Function)
* I_SUBCAT = "Specification Type
I_FLG_CHG = "Truth Value
I_VALFR = "Date and Time, Current (Application Server) Date
* I_READ_INTERVAL = "Structure for Read Interval
I_EXCHG = "EHS: Data Transfer from and to EH&S

IMPORTING
E_ERROR_TAB = "Table Type Application Log
E_FLG_ERROR = "Truth Value
.



IMPORTING Parameters details for CBRC_LIB_EHS_DATA_UPDATE

I_FLG_FULL_INIT -

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

I_REG_TAB - Table Type for CCRCS_REG

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

I_DET_TAB - Table Type for CCRCC_DET

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

I_MATNR_SUB_TAB - Table Type Standard Error

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

I_SUBID_TAB - SELECT-OPTIONS Table

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

I_REG - Regulatory List

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

I_WA_DET - EHS: Data Determination Modules per Regulation/Scenario

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

I_RFCDEST - Logical Destination (Specified when Calling Function)

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

I_SUBCAT - Specification Type

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

I_FLG_CHG - Truth Value

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

I_VALFR - Date and Time, Current (Application Server) Date

Data type: SY-DATUM
Optional: No
Call by Reference: Yes

I_READ_INTERVAL - Structure for Read Interval

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

I_EXCHG - EHS: Data Transfer from and to EH&S

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

EXPORTING Parameters details for CBRC_LIB_EHS_DATA_UPDATE

E_ERROR_TAB - Table Type Application Log

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

E_FLG_ERROR - Truth Value

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

Copy and paste ABAP code example for CBRC_LIB_EHS_DATA_UPDATE 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_e_error_tab  TYPE CCRCTT_MSG, "   
lv_i_flg_full_init  TYPE ESEBOOLE, "   
lv_i_reg_tab  TYPE CCRCTT_REG, "   
lv_i_det_tab  TYPE CCRCTT_DET, "   
lv_i_matnr_sub_tab  TYPE CCRCTT_FIELDS, "   
lv_i_subid_tab  TYPE RSELOPTION, "   
lv_i_reg  TYPE ESESLSTID, "   
lv_e_flg_error  TYPE ESEBOOLE, "   
lv_i_wa_det  TYPE CCRCC_DET, "   
lv_i_rfcdest  TYPE RFCDEST, "   
lv_i_subcat  TYPE ESESUBCAT, "   
lv_i_flg_chg  TYPE ESEBOOLE, "   
lv_i_valfr  TYPE SY-DATUM, "   
lv_i_read_interval  TYPE CCRCS_INTERVAL, "   
lv_i_exchg  TYPE CCRCC_EXCHG. "   

  CALL FUNCTION 'CBRC_LIB_EHS_DATA_UPDATE'  "NOTRANSL: Aktualisieren der Daten aus dem Eigenschaftsbaum
    EXPORTING
         I_FLG_FULL_INIT = lv_i_flg_full_init
         I_REG_TAB = lv_i_reg_tab
         I_DET_TAB = lv_i_det_tab
         I_MATNR_SUB_TAB = lv_i_matnr_sub_tab
         I_SUBID_TAB = lv_i_subid_tab
         I_REG = lv_i_reg
         I_WA_DET = lv_i_wa_det
         I_RFCDEST = lv_i_rfcdest
         I_SUBCAT = lv_i_subcat
         I_FLG_CHG = lv_i_flg_chg
         I_VALFR = lv_i_valfr
         I_READ_INTERVAL = lv_i_read_interval
         I_EXCHG = lv_i_exchg
    IMPORTING
         E_ERROR_TAB = lv_e_error_tab
         E_FLG_ERROR = lv_e_flg_error
. " CBRC_LIB_EHS_DATA_UPDATE




ABAP code using 7.40 inline data declarations to call FM CBRC_LIB_EHS_DATA_UPDATE

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 DATUM FROM SY INTO @DATA(ld_i_valfr).
 
 
 


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!