DG_DETAIL_CONSIST_CHECK SAP Method Consistency Checks Dangerous Goods Master (Detail Tables)









Below is documentation, parameters and attributes of ABAP Method DG_DETAIL_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_DETAIL_CONSIST_CHECK can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method DG_DETAIL_CONSIST_CHECK

.

NameTypeData TypeDescriptionDefault Value
I_CALLSTATUSImportingTYPE
DGPD1_CALL_STATUS
Call Status (Filling and Distribution)
I_DG_HEADER_TABImportingTYPE
EHS_RDGAPIDGHEAD_T
Dangerous Goods Master: Header Tables
I_FLG_SUPPRESS_UPD_CARRImportingTYPE
ESP1_BOOLEAN
Suppress Overwrite of Transport Regulations
I_FLG_SUPPRESS_UPD_PACKImportingTYPE
ESP1_BOOLEAN
Suppress Overwrite of Packing Requirement
I_FLG_SUPPRESS_UPD_SPROVImportingTYPE
ESP1_BOOLEAN
Suppress Overwrite of Special Packing Provisions
I_FLG_SUPPRESS_UPD_TRAPPRImportingTYPE
ESP1_BOOLEAN
Suppress Overwrite of Transport Approval
I_SEL_DATEImportingTYPE
DGTMD-VALFR
Selection Date
X_DG_CARR_TABChangingTYPE
EHS_RCBDUAPICARR_T
Dangerous Goods Master: Transport Regulations
X_DG_PACK_OLD_TABChangingTYPE
EHS_RDGAPIPK_T
Dangerous Goods Master: Packing Requirement (Old)
X_DG_PACK_TABChangingTYPE
EHS_RCBDUAPIPACK_T
Dangerous Goods Master: Transport Approval
X_DG_SPROV_TABChangingTYPE
EHS_RCBDUAPISP_T
Dangerous Goods Master: Special Packing Provisions
X_DG_TRAPPR_TABChangingTYPE
EHS_RCBDUAPITRAPPR_T
Dangerous Goods Master: Transport Regulations
X_FLG_ERRORChangingTYPE
ESP1_BOOLEAN
Indicator: Error
X_LOGTABChangingTYPE
BALMI_TAB
Application Log
X_RETURNChangingTYPE
BAPIRET2
Return Parameter(s)



Exceptions of Method DG_DETAIL_CONSIST_CHECK

This method does not have any exceptions

Example 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_FLG_SUPPRESS_UPD_CARR TYPE ESP1_BOOLEAN,
lv_I_FLG_SUPPRESS_UPD_PACK TYPE ESP1_BOOLEAN,
lv_I_FLG_SUPPRESS_UPD_SPROV TYPE ESP1_BOOLEAN,
lv_I_FLG_SUPPRESS_UPD_TRAPPR TYPE ESP1_BOOLEAN,
lv_I_SEL_DATE TYPE DGTMD-VALFR,
lv_X_DG_CARR_TAB TYPE EHS_RCBDUAPICARR_T,
lv_X_DG_PACK_OLD_TAB TYPE EHS_RDGAPIPK_T,
lv_X_DG_PACK_TAB TYPE EHS_RCBDUAPIPACK_T,
lv_X_DG_SPROV_TAB TYPE EHS_RCBDUAPISP_T,
lv_X_DG_TRAPPR_TAB TYPE EHS_RCBDUAPITRAPPR_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_DETAIL_CONSIST_CHECK(
EXPORTING
I_CALLSTATUS = lv_I_CALLSTATUS
I_DG_HEADER_TAB = lv_I_DG_HEADER_TAB
I_FLG_SUPPRESS_UPD_CARR = lv_I_FLG_SUPPRESS_UPD_CARR
I_FLG_SUPPRESS_UPD_PACK = lv_I_FLG_SUPPRESS_UPD_PACK
I_FLG_SUPPRESS_UPD_SPROV = lv_I_FLG_SUPPRESS_UPD_SPROV
I_FLG_SUPPRESS_UPD_TRAPPR = lv_I_FLG_SUPPRESS_UPD_TRAPPR
I_SEL_DATE = lv_I_SEL_DATE
CHANGING
X_DG_CARR_TAB = lv_X_DG_CARR_TAB
X_DG_PACK_OLD_TAB = lv_X_DG_PACK_OLD_TAB
X_DG_PACK_TAB = lv_X_DG_PACK_TAB
X_DG_SPROV_TAB = lv_X_DG_SPROV_TAB
X_DG_TRAPPR_TAB = lv_X_DG_TRAPPR_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



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!