CHECK_RESULT SAP Method Returns the result of the test









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

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


Parameters of Method CHECK_RESULT

.

NameTypeData TypeDescriptionDefault Value
IV_CREATIONDATEImportingTYPE
SY-DATUM
Current Date of Application Server
IV_CREATIONTIMEImportingTYPE
SY-UZEIT
Current Time of Application Server
IV_CREATIONTIME_TOImportingTYPE
SY-UZEIT
Current Time of Application Server
IV_MATKLImportingTYPE
MATKL
Account Number of Vendor or Creditor
ET_LOG_HANDLEExportingTYPE
BAL_T_LOGH
Application Log: Log Handle Table
EV_RESULT_TYPEExportingTYPE
CHAR1
Single-Character Indicator



Exceptions of Method CHECK_RESULT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO COTMDGL_PCHRPLCTRQ.
DATA: lv_ET_LOG_HANDLE TYPE BAL_T_LOGH,
lv_EV_RESULT_TYPE TYPE CHAR1,
lv_IV_CREATIONDATE TYPE SY-DATUM,
lv_IV_CREATIONTIME TYPE SY-UZEIT,
lv_IV_CREATIONTIME_TO TYPE SY-UZEIT,
lv_IV_MATKL TYPE MATKL,
lv_other TYPE c.

CALL METHOD lo_class=>CHECK_RESULT(
EXPORTING
IV_CREATIONDATE = lv_IV_CREATIONDATE
IV_CREATIONTIME = lv_IV_CREATIONTIME
IV_CREATIONTIME_TO = lv_IV_CREATIONTIME_TO
IV_MATKL = lv_IV_MATKL
IMPORTING
ET_LOG_HANDLE = lv_ET_LOG_HANDLE
EV_RESULT_TYPE = lv_EV_RESULT_TYPE ).

Links to Related Class(s)

COTMDGL_...
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!