FILL_EXTRACTOR_TABLE_NODE SAP Method of class /BOFU/CL_BI_SERVICES
Below is documentation, parameters and attributes of ABAP Method FILL_EXTRACTOR_TABLE_NODE within SAP class /BOFU/CL_BI_SERVICES. 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_BI_SERVICES 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 FILL_EXTRACTOR_TABLE_NODE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_EXTRACTOR_TABLE_NODE
.| Name | Type | Data Type | Description | Default Value |
| IS_ROOT_NODE | Importing | TYPE /BOBF/S_CONFRO_NODE | Configuration: Node | |
| IT_PARENT_NODE_ID | Importing | TYPE /BOFU/T_BO_NODE_ID | SESF_BO_NODE_ID | |
| IT_PATH | Importing | TYPE GTYT_NODE_PATH | Main path from the root down to the anchor | |
| IV_BO_NAME | Importing | TYPE STRING | Name | |
| IV_PATH_INDEX | Importing | TYPE SY-TABIX | Index of Internal Tables | |
| ET_EXTR_PARENT_LINK | Exporting | TYPE GTYT_PARENT_LINK | Link from extractor line to parent node | |
| EV_FINISHED | Exporting | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| CT_DATA | Changing | TYPE INDEX TABLE | Extractor line |
Exceptions of Method FILL_EXTRACTOR_TABLE_NODE
/BOFU/CX_PPF_CONF -Example 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_CT_DATA TYPE INDEX TABLE,
lv_ET_EXTR_PARENT_LINK TYPE GTYT_PARENT_LINK,
lv_EV_FINISHED TYPE BOOLE_D,
lv_IS_ROOT_NODE TYPE /BOBF/S_CONFRO_NODE,
lv_IT_PARENT_NODE_ID TYPE /BOFU/T_BO_NODE_ID,
lv_IT_PATH TYPE GTYT_NODE_PATH,
lv_IV_BO_NAME TYPE STRING,
lv_IV_PATH_INDEX TYPE SY-TABIX,
lv_other TYPE c.
CALL METHOD /BOFU/CL_BI_SERVICES=>FILL_EXTRACTOR_TABLE_NODE(
EXPORTING
IS_ROOT_NODE = lv_IS_ROOT_NODE
IT_PARENT_NODE_ID = lv_IT_PARENT_NODE_ID
IT_PATH = lv_IT_PATH
IV_BO_NAME = lv_IV_BO_NAME
IV_PATH_INDEX = lv_IV_PATH_INDEX
IMPORTING
ET_EXTR_PARENT_LINK = lv_ET_EXTR_PARENT_LINK
EV_FINISHED = lv_EV_FINISHED
CHANGING
CT_DATA = lv_CT_DATA ).
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