GET_OTC_ONTC SAP Method Get ONTC, ONTC
Below is documentation, parameters and attributes of ABAP Method GET_OTC_ONTC within SAP class /BOBF/CL_C_BOPF_2_BOPF_W_ONTC. 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_C_BOPF_2_BOPF_W_ONTC 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 GET_OTC_ONTC can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_OTC_ONTC
.| Name | Type | Data Type | Description | Default Value |
| IO_CONF | Importing | TYPE REF TO /BOBF/IF_FRW_CONFIGURATION | Interface for Configuration | |
| IS_NODE | Importing | TYPE /BOBF/S_CONFRO_NODE | Node | |
| EV_ONTC | Exporting | TYPE SIMPLE | ||
| EV_OTC | Exporting | TYPE SIMPLE | ||
| CO_MESSAGE | Changing | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object |
Exceptions of Method GET_OTC_ONTC
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_C_BOPF_2_BOPF_W_ONTC.
DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_EV_ONTC TYPE SIMPLE,
lv_EV_OTC TYPE SIMPLE,
lv_IO_CONF TYPE /BOBF/IF_FRW_CONFIGURATION,
lv_IS_NODE TYPE /BOBF/S_CONFRO_NODE,
lv_other TYPE c.
CALL METHOD lo_class=>GET_OTC_ONTC(
EXPORTING
IO_CONF = lv_IO_CONF
IS_NODE = lv_IS_NODE
IMPORTING
EV_ONTC = lv_EV_ONTC
EV_OTC = lv_EV_OTC
CHANGING
CO_MESSAGE = lv_CO_MESSAGE ).
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