CHECK_CONFIG_SOURCE_NODE SAP Method Check configured source node
Below is documentation, parameters and attributes of ABAP Method CHECK_CONFIG_SOURCE_NODE within SAP class /BOFU/CL_TXC_HELPER. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BOFU/CL_TXC_HELPER 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 directlyThe following technical details of method CHECK_CONFIG_SOURCE_NODE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_CONFIG_SOURCE_NODE
.| Name | Type | Data Type | Description | Default Value |
| IO_BOPF_CONF | Importing | TYPE REF TO /BOBF/CL_BOPF_CONFIG_HELPER | BOPF Configuration Helper | |
| IV_BO_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| IV_NODE_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| IV_SOURCE_BUS_ENT | Importing | TYPE /BOFU/SRC_BUS_ENTID | Source Business Entity | |
| EV_CONFIG_MATCH | Exporting | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') |
Exceptions of Method CHECK_CONFIG_SOURCE_NODE
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_EV_CONFIG_MATCH TYPE BOOLE_D,
lv_IO_BOPF_CONF TYPE /BOBF/CL_BOPF_CONFIG_HELPER,
lv_IV_BO_KEY TYPE /BOBF/CONF_KEY,
lv_IV_NODE_KEY TYPE /BOBF/CONF_KEY,
lv_IV_SOURCE_BUS_ENT TYPE /BOFU/SRC_BUS_ENTID,
lv_other TYPE c.
CALL METHOD /BOFU/CL_TXC_HELPER=>CHECK_CONFIG_SOURCE_NODE(
EXPORTING
IO_BOPF_CONF = lv_IO_BOPF_CONF
IV_BO_KEY = lv_IV_BO_KEY
IV_NODE_KEY = lv_IV_NODE_KEY
IV_SOURCE_BUS_ENT = lv_IV_SOURCE_BUS_ENT
IMPORTING
EV_CONFIG_MATCH = lv_EV_CONFIG_MATCH ).
Links to Related Class(s)
/BOFU/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects