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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IS_ROOT_NODEImportingTYPE
/BOBF/S_CONFRO_NODE
Configuration: Node
IT_PARENT_NODE_IDImportingTYPE
/BOFU/T_BO_NODE_ID
SESF_BO_NODE_ID
IT_PATHImportingTYPE
GTYT_NODE_PATH
Main path from the root down to the anchor
IV_BO_NAMEImportingTYPE
STRING
Name
IV_PATH_INDEXImportingTYPE
SY-TABIX
Index of Internal Tables
ET_EXTR_PARENT_LINKExportingTYPE
GTYT_PARENT_LINK
Link from extractor line to parent node
EV_FINISHEDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
CT_DATAChangingTYPE
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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!