CHECK SAP Method of class IF_SEU_ADT_RES_CHECKABLE
Below is documentation, parameters and attributes of ABAP Method CHECK within SAP class IF_SEU_ADT_RES_CHECKABLE. 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_SEU_ADT_RES_CHECKABLE 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 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK
.| Name | Type | Data Type | Description | Default Value |
| CONTENT | Importing | TYPE SEU_ADT_DIRTY_CHECK_OBJECTS | ||
| INCLUDE_PACKAGE_CHECK | Importing | TYPE BOOLE_D | ||
| QUERY_PARAMS | Importing | TYPE CL_ADT_REST_URI=>TY_QUERY_PARAMS | ||
| VERSION | Importing | TYPE R3STATE | ||
| WB_CHECKLIST | Importing | TYPE REF TO CL_WB_CHECKLIST | ||
| WB_OBJECT | Importing | TYPE REF TO CL_WB_OBJECT | ||
| REPORTER | Changing | TYPE STRING |
Exceptions of Method CHECK
CX_ADT_REST -Example ABAP coding
DATA: lo_class TYPE REF TO IF_SEU_ADT_RES_CHECKABLE.
DATA: lv_CONTENT TYPE SEU_ADT_DIRTY_CHECK_OBJECTS,
lv_INCLUDE_PACKAGE_CHECK TYPE BOOLE_D,
lv_QUERY_PARAMS TYPE CL_ADT_REST_URI=>TY_QUERY_PARAMS,
lv_VERSION TYPE R3STATE,
lv_WB_CHECKLIST TYPE CL_WB_CHECKLIST,
lv_WB_OBJECT TYPE CL_WB_OBJECT,
lv_REPORTER TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK(
EXPORTING
CONTENT = lv_CONTENT
INCLUDE_PACKAGE_CHECK = lv_INCLUDE_PACKAGE_CHECK
QUERY_PARAMS = lv_QUERY_PARAMS
VERSION = lv_VERSION
WB_CHECKLIST = lv_WB_CHECKLIST
WB_OBJECT = lv_WB_OBJECT
CHANGING
REPORTER = lv_REPORTER ).
Links to Related Class(s)
IF_SEU_A...Full list of available SAP object classes
Search for further information about these or an SAP related objects