GET_DATA_INT SAP Method of class /BOFU/CL_FBI_VWI_WITH_HELPER









Below is documentation, parameters and attributes of ABAP Method GET_DATA_INT 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 can also be found below:

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


Parameters of Method GET_DATA_INT

.

NameTypeData TypeDescriptionDefault Value
IS_VIEW_CONTEXT_DATAImportingTYPE
/BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TS_VIEW_CONTEXT_DATA
IT_KEYSImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_SRC_ADDImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_SRC_DELImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_SELECTED_FIELDSImportingTYPE
FPMGB_T_SELECTED_FIELDS
Selected(Used) Fields
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

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_IS_VIEW_CONTEXT_DATA TYPE /BOFU/IF_FBI_VIEW_INSTANCE_NEW=>TS_VIEW_CONTEXT_DATA,
lv_IT_KEYS TYPE /BOBF/T_FRW_KEY,
lv_IT_SRC_ADD TYPE /BOBF/T_FRW_KEY,
lv_IT_SRC_DEL TYPE /BOBF/T_FRW_KEY,
lv_IT_SELECTED_FIELDS TYPE FPMGB_T_SELECTED_FIELDS,
lv_other TYPE c.

CALL METHOD lo_class=>GET_DATA_INT(
EXPORTING
IS_VIEW_CONTEXT_DATA = lv_IS_VIEW_CONTEXT_DATA
IT_KEYS = lv_IT_KEYS
IT_SRC_ADD = lv_IT_SRC_ADD
IT_SRC_DEL = lv_IT_SRC_DEL
IT_SELECTED_FIELDS = lv_IT_SELECTED_FIELDS
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!