DG_RELEASE_CONSIST_CHECK SAP Method Consistency Checks Dangerous Goods Master (Product Release)
Below is documentation, parameters and attributes of ABAP Method DG_RELEASE_CONSIST_CHECK within SAP class IF_EX_BADI_EHS_DG_CONSIST_001. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_EHS_DG_CONSIST_001 into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method DG_RELEASE_CONSIST_CHECK can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DG_RELEASE_CONSIST_CHECK
.| Name | Type | Data Type | Description | Default Value |
| I_CALLSTATUS | Importing | TYPE DGPD1_CALL_STATUS | Call Status (Filling and Distribution) | |
| I_DG_HEADER_TAB | Importing | TYPE EHS_RDGAPIDGHEAD_T | Dangerous Goods Master: Header Tables | |
| I_KEY_MAPP_TAB | Importing | TYPE EHS_RDG_MASTER_KEY_T | DG: Assignment of Keys | |
| I_SEL_DATE | Importing | TYPE DGTMD-VALFR | Selection Date | |
| X_DG_RELEASE_TAB | Changing | TYPE EHS_RCBDUAPIDGRELAPPL_T | Dangerous Goods Master: Product Release | |
| X_FLG_ERROR | Changing | TYPE ESP1_BOOLEAN | Indicator: Error | |
| X_LOGTAB | Changing | TYPE BALMI_TAB | Application Log | |
| X_RETURN | Changing | TYPE BAPIRET2 | Return Parameter(s) |
Exceptions of Method DG_RELEASE_CONSIST_CHECK
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_EHS_DG_CONSIST_001.
DATA: lv_I_CALLSTATUS TYPE DGPD1_CALL_STATUS,
lv_I_DG_HEADER_TAB TYPE EHS_RDGAPIDGHEAD_T,
lv_I_KEY_MAPP_TAB TYPE EHS_RDG_MASTER_KEY_T,
lv_I_SEL_DATE TYPE DGTMD-VALFR,
lv_X_DG_RELEASE_TAB TYPE EHS_RCBDUAPIDGRELAPPL_T,
lv_X_FLG_ERROR TYPE ESP1_BOOLEAN,
lv_X_LOGTAB TYPE BALMI_TAB,
lv_X_RETURN TYPE BAPIRET2,
lv_other TYPE c.
CALL METHOD lo_class=>DG_RELEASE_CONSIST_CHECK(
EXPORTING
I_CALLSTATUS = lv_I_CALLSTATUS
I_DG_HEADER_TAB = lv_I_DG_HEADER_TAB
I_KEY_MAPP_TAB = lv_I_KEY_MAPP_TAB
I_SEL_DATE = lv_I_SEL_DATE
CHANGING
X_DG_RELEASE_TAB = lv_X_DG_RELEASE_TAB
X_FLG_ERROR = lv_X_FLG_ERROR
X_LOGTAB = lv_X_LOGTAB
X_RETURN = lv_X_RETURN ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects