WARN_IF_NOT_IMPLEMENTED SAP Method of class /BOBF/CL_CONF_V_DRAFT_IMPL
Below is documentation, parameters and attributes of ABAP Method WARN_IF_NOT_IMPLEMENTED within SAP class /BOBF/CL_CONF_V_DRAFT_IMPL. 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_V_DRAFT_IMPL 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 WARN_IF_NOT_IMPLEMENTED can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method WARN_IF_NOT_IMPLEMENTED
.| Name | Type | Data Type | Description | Default Value |
| IO_MESSAGE | Importing | TYPE REF TO /BOBF/IF_FRW_MESSAGE | ||
| IS_ORIGIN_LOCATION | Importing | TYPE /BOBF/S_FRW_LOCATION | ||
| IV_CLASS_NAME | Importing | TYPE SEOCLSNAME | ||
| IV_CONTENT_NAME | Importing | TYPE /BOBF/OBM_NAME | ||
| IV_FIELD_DESCRIPTION | Importing | TYPE /BOBF/OBM_DESCRIPTION | ||
| IV_INTERFACE_NAME | Importing | TYPE SEOCLSNAME | ||
| IV_METHOD_NAME | Importing | TYPE SEOCMPNAME |
Exceptions of Method WARN_IF_NOT_IMPLEMENTED
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_CONF_V_DRAFT_IMPL.
DATA: lv_IO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_IS_ORIGIN_LOCATION TYPE /BOBF/S_FRW_LOCATION,
lv_IV_CLASS_NAME TYPE SEOCLSNAME,
lv_IV_CONTENT_NAME TYPE /BOBF/OBM_NAME,
lv_IV_FIELD_DESCRIPTION TYPE /BOBF/OBM_DESCRIPTION,
lv_IV_INTERFACE_NAME TYPE SEOCLSNAME,
lv_IV_METHOD_NAME TYPE SEOCMPNAME,
lv_other TYPE c.
CALL METHOD lo_class=>WARN_IF_NOT_IMPLEMENTED(
EXPORTING
IO_MESSAGE = lv_IO_MESSAGE
IS_ORIGIN_LOCATION = lv_IS_ORIGIN_LOCATION
IV_CLASS_NAME = lv_IV_CLASS_NAME
IV_CONTENT_NAME = lv_IV_CONTENT_NAME
IV_FIELD_DESCRIPTION = lv_IV_FIELD_DESCRIPTION
IV_INTERFACE_NAME = lv_IV_INTERFACE_NAME
IV_METHOD_NAME = lv_IV_METHOD_NAME ).
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