_GET_FEEDER SAP Method of class /BOFU/CL_UICFG_HELPER
Below is documentation, parameters and attributes of ABAP Method _GET_FEEDER within SAP class /BOFU/CL_UICFG_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_UICFG_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 _GET_FEEDER can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method _GET_FEEDER
.| Name | Type | Data Type | Description | Default Value |
| IO_COMP_READ | Importing | TYPE REF TO IF_WD_CONFIG_COMP_READER | ||
| IS_CONFIG | Importing | TYPE WDY_CONFIG_KEY | ||
| IV_CLASS | Importing | TYPE SEOCLSNAME | ||
| IV_COMPONENT | Importing | TYPE FPM_COMPONENT_NAME | ||
| IV_NODEID | Importing | TYPE STRING | ||
| EO_FEEDER | Exporting | TYPE REF TO IF_FPM_GUIBB | ||
| EV_VIEW | Exporting | TYPE /BOFU/IF_UICFG_C=>TS_FBI_DATA-NAME |
Exceptions of Method _GET_FEEDER
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_EO_FEEDER TYPE IF_FPM_GUIBB,
lv_EV_VIEW TYPE /BOFU/IF_UICFG_C=>TS_FBI_DATA-NAME,
lv_IO_COMP_READ TYPE IF_WD_CONFIG_COMP_READER,
lv_IS_CONFIG TYPE WDY_CONFIG_KEY,
lv_IV_CLASS TYPE SEOCLSNAME,
lv_IV_COMPONENT TYPE FPM_COMPONENT_NAME,
lv_IV_NODEID TYPE STRING,
lv_other TYPE c.
CALL METHOD /BOFU/CL_UICFG_HELPER=>_GET_FEEDER(
EXPORTING
IO_COMP_READ = lv_IO_COMP_READ
IS_CONFIG = lv_IS_CONFIG
IV_CLASS = lv_IV_CLASS
IV_COMPONENT = lv_IV_COMPONENT
IV_NODEID = lv_IV_NODEID
IMPORTING
EO_FEEDER = lv_EO_FEEDER
EV_VIEW = lv_EV_VIEW ).
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