METHOD_IMPLEMENTED SAP Method Check if method is implemented and active









Below is documentation, parameters and attributes of ABAP Method METHOD_IMPLEMENTED within SAP class /BOBF/CL_CONF_TOOLBOX. 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 /BOBF/CL_CONF_TOOLBOX into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method METHOD_IMPLEMENTED can also be found below:

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


Parameters of Method METHOD_IMPLEMENTED

.

NameTypeData TypeDescriptionDefault Value
IV_CLASS_NAMEImportingTYPE
SEOCLSNAME
Object Type Name
IV_INTERFACE_NAMEImportingTYPE
SEOCLSNAME
Object Type Name
IV_METHOD_NAMEImportingTYPE
SEOCMPNAME
Component name
EV_EXISTS_ACTIVEExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
EV_EXISTS_ONLY_INACTIVEExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
EV_IMPL_CLASS_NAMEExportingTYPE
SEOCLSNAME
Object Type Name
EV_IMPL_EMPTYExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')



Exceptions of Method METHOD_IMPLEMENTED

This method does not have any exceptions

Example ABAP coding


DATA: lv_EV_EXISTS_ACTIVE TYPE BOOLE_D,
lv_EV_EXISTS_ONLY_INACTIVE TYPE BOOLE_D,
lv_EV_IMPL_CLASS_NAME TYPE SEOCLSNAME,
lv_EV_IMPL_EMPTY TYPE BOOLE_D,
lv_IV_CLASS_NAME TYPE SEOCLSNAME,
lv_IV_INTERFACE_NAME TYPE SEOCLSNAME,
lv_IV_METHOD_NAME TYPE SEOCMPNAME,
lv_other TYPE c.

CALL METHOD /BOBF/CL_CONF_TOOLBOX=>METHOD_IMPLEMENTED(
EXPORTING
IV_CLASS_NAME = lv_IV_CLASS_NAME
IV_INTERFACE_NAME = lv_IV_INTERFACE_NAME
IV_METHOD_NAME = lv_IV_METHOD_NAME
IMPORTING
EV_EXISTS_ACTIVE = lv_EV_EXISTS_ACTIVE
EV_EXISTS_ONLY_INACTIVE = lv_EV_EXISTS_ONLY_INACTIVE
EV_IMPL_CLASS_NAME = lv_EV_IMPL_CLASS_NAME
EV_IMPL_EMPTY = lv_EV_IMPL_EMPTY ).

Links to Related Class(s)

/BOBF/CL...
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!