CHECK_REQUEST_ITEMS SAP Method Item Data Check









Below is documentation, parameters and attributes of ABAP Method CHECK_REQUEST_ITEMS within SAP class /SCTM/IF_EX_EHSDG_BADI_01. 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 /SCTM/IF_EX_EHSDG_BADI_01 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 CHECK_REQUEST_ITEMS can also be found below:

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


Parameters of Method CHECK_REQUEST_ITEMS

.

NameTypeData TypeDescriptionDefault Value
IS_RGEHEADImportingTYPE REF TO
/SCTM/DGS_RGEHEAD
EHS: Header Data for Dangerous Goods Checks from RGE
IT_RGEITEMImportingTYPE
/SCTM/DGY_RGEITEM
EHS: Standard Table with Item Data for Dang.Goods Checks
IV_INDEXImportingTYPE
SY-INDEX
Index for Current Query from Header Table
XT_RETURNChangingTYPE
BAPIRET2_T
Return Table
XV_ERRORChangingTYPE
/SEHS/BAE_BOOLEAN
Truth Value



Exceptions of Method CHECK_REQUEST_ITEMS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /SCTM/IF_EX_EHSDG_BADI_01.
DATA: lv_IS_RGEHEAD TYPE /SCTM/DGS_RGEHEAD,
lv_IT_RGEITEM TYPE /SCTM/DGY_RGEITEM,
lv_IV_INDEX TYPE SY-INDEX,
lv_XT_RETURN TYPE BAPIRET2_T,
lv_XV_ERROR TYPE /SEHS/BAE_BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>CHECK_REQUEST_ITEMS(
EXPORTING
IS_RGEHEAD = lv_IS_RGEHEAD
IT_RGEITEM = lv_IT_RGEITEM
IV_INDEX = lv_IV_INDEX
CHANGING
XT_RETURN = lv_XT_RETURN
XV_ERROR = lv_XV_ERROR ).

Links to Related Class(s)

/SCTM/IF...
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!