GET_DATA SAP Method of class /BOFU/IF_FBI_VIEW_INSTANCE_NEW









Below is documentation, parameters and attributes of ABAP Method GET_DATA within SAP class /BOFU/IF_FBI_VIEW_INSTANCE_NEW. 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 /BOFU/IF_FBI_VIEW_INSTANCE_NEW 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_DATA can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_DATA

.

NameTypeData TypeDescriptionDefault Value
IO_EXTENDED_CTRLImportingTYPE
DATA
IO_SERVICE_INFOImportingTYPE REF TO
IF_FPM_GUIBB_TREE_SERVICE_INFO
Provides information about services
IS_UI_CONTEXT_DATAImportingTYPE
TS_UI_CONTEXT_DATA
IS_VIEW_CONTEXT_DATAImportingTYPE
TS_VIEW_CONTEXT_DATA
Association
IT_KEYSImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_SELECTED_FIELDSImportingTYPE
FPMGB_T_SELECTED_FIELDS
Selected(Used) Fields
IT_SRC_ADDImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_SRC_DELImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IV_KEYImportingTYPE
/BOBF/CONF_KEY
NodeID
IV_VISIBLE_ROWSImportingTYPE
I
IO_EVENTImportingTYPE REF TO
CL_FPM_EVENT
CL_FPM_EVENT
EV_PROP_ROW_LEVELExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
CS_DATAChangingTYPE
DATA
CT_DATAChangingTYPE
INDEX TABLE
CV_DATA_CHANGEDChangingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
CT_SELECTED_ROWSChangingTYPE
/BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TT_ROW



Exceptions of Method GET_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/IF_FBI_VIEW_INSTANCE_NEW.
DATA: lv_CS_DATA TYPE DATA,
lv_CT_DATA TYPE INDEX TABLE,
lv_CV_DATA_CHANGED TYPE BOOLE_D,
lv_IO_EXTENDED_CTRL TYPE DATA,
lv_IO_SERVICE_INFO TYPE IF_FPM_GUIBB_TREE_SERVICE_INFO,
lv_IS_UI_CONTEXT_DATA TYPE TS_UI_CONTEXT_DATA,
lv_IS_VIEW_CONTEXT_DATA TYPE TS_VIEW_CONTEXT_DATA,
lv_IT_KEYS TYPE /BOBF/T_FRW_KEY,
lv_IT_SELECTED_FIELDS TYPE FPMGB_T_SELECTED_FIELDS,
lv_IT_SRC_ADD TYPE /BOBF/T_FRW_KEY,
lv_IT_SRC_DEL TYPE /BOBF/T_FRW_KEY,
lv_IV_KEY TYPE /BOBF/CONF_KEY,
lv_IV_VISIBLE_ROWS TYPE I,
lv_CT_SELECTED_ROWS TYPE /BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TT_ROW,
lv_EV_PROP_ROW_LEVEL TYPE BOOLE_D,
lv_IO_EVENT TYPE CL_FPM_EVENT,
lv_other TYPE c.

CALL METHOD lo_class=>GET_DATA(
EXPORTING
IO_EXTENDED_CTRL = lv_IO_EXTENDED_CTRL
IO_SERVICE_INFO = lv_IO_SERVICE_INFO
IS_UI_CONTEXT_DATA = lv_IS_UI_CONTEXT_DATA
IS_VIEW_CONTEXT_DATA = lv_IS_VIEW_CONTEXT_DATA
IT_KEYS = lv_IT_KEYS
IT_SELECTED_FIELDS = lv_IT_SELECTED_FIELDS
IT_SRC_ADD = lv_IT_SRC_ADD
IT_SRC_DEL = lv_IT_SRC_DEL
IV_KEY = lv_IV_KEY
IV_VISIBLE_ROWS = lv_IV_VISIBLE_ROWS
IO_EVENT = lv_IO_EVENT
IMPORTING
EV_PROP_ROW_LEVEL = lv_EV_PROP_ROW_LEVEL
CHANGING
CS_DATA = lv_CS_DATA
CT_DATA = lv_CT_DATA
CV_DATA_CHANGED = lv_CV_DATA_CHANGED
CT_SELECTED_ROWS = lv_CT_SELECTED_ROWS ).

Links to Related Class(s)

/BOFU/IF...
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!