GET_DATA_INT_HELPER SAP Method of class /BOFU/CL_FBI_VWI_WITH_HELPER









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

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


Parameters of Method GET_DATA_INT_HELPER

.

NameTypeData TypeDescriptionDefault Value
IO_SERVICE_INFOImportingTYPE REF TO
IF_FPM_GUIBB_TREE_SERVICE_INFO
Provides information about services
IS_UI_CONTEXT_DATAImportingTYPE
/BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TS_UI_CONTEXT_DATA
IS_VIEW_CONTEXT_DATAImportingTYPE
/BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TS_VIEW_CONTEXT_DATA
IT_KEYSImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_SELECTED_FIELDSImportingTYPE
FPMGB_T_SELECTED_FIELDS
Selected(Used) Fields
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 (=' ')



Exceptions of Method GET_DATA_INT_HELPER

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/CL_FBI_VWI_WITH_HELPER.
DATA: lv_CS_DATA TYPE DATA,
lv_CT_DATA TYPE INDEX TABLE,
lv_CV_DATA_CHANGED TYPE BOOLE_D,
lv_IO_SERVICE_INFO TYPE IF_FPM_GUIBB_TREE_SERVICE_INFO,
lv_IS_UI_CONTEXT_DATA TYPE /BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TS_UI_CONTEXT_DATA,
lv_IS_VIEW_CONTEXT_DATA TYPE /BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TS_VIEW_CONTEXT_DATA,
lv_IT_KEYS TYPE /BOBF/T_FRW_KEY,
lv_EV_PROP_ROW_LEVEL TYPE BOOLE_D,
lv_IT_SELECTED_FIELDS TYPE FPMGB_T_SELECTED_FIELDS,
lv_other TYPE c.

CALL METHOD lo_class=>GET_DATA_INT_HELPER(
EXPORTING
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
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 ).

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!