GET_FIELD_PROPERTIES SAP Method of class /BOFU/IF_FBI_VIEW_INSTANCE_NEW









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

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


Parameters of Method GET_FIELD_PROPERTIES

.

NameTypeData TypeDescriptionDefault Value
IS_DATAImportingTYPE REF TO
DATA
IS_UIBB_KEYImportingTYPE
CL_FPM_EVENT=>TY_S_UIBB_KEY
IT_DATAImportingTYPE REF TO
DATA
IT_SELECTED_LINESImportingTYPE
RSTABIXTAB
Repository Infosystem Table for Indexes
IV_DATA_CHANGEDImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ET_FIELD_PROPSExportingTYPE
/BOFU/IF_FBI_VIEW_EXITINTF_RUN=>TT_FIELD_PROPERTY
ET_FIELD_PROPS_EXTExportingTYPE
/BOFU/IF_FBI_VIEW_EXITINTF_RUN=>TT_FIELD_PROPERTY_EXT
EV_FIELD_PROPS_CHANGEDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
EV_READ_ONLY_CHANGEDExportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
CT_FIELD_USAGESChangingTYPE
FPMGB_T_FIELDUSAGE
Field Usage



Exceptions of Method GET_FIELD_PROPERTIES

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/IF_FBI_VIEW_INSTANCE_NEW.
DATA: lv_CT_FIELD_USAGES TYPE FPMGB_T_FIELDUSAGE,
lv_ET_FIELD_PROPS TYPE /BOFU/IF_FBI_VIEW_EXITINTF_RUN=>TT_FIELD_PROPERTY,
lv_ET_FIELD_PROPS_EXT TYPE /BOFU/IF_FBI_VIEW_EXITINTF_RUN=>TT_FIELD_PROPERTY_EXT,
lv_EV_FIELD_PROPS_CHANGED TYPE BOOLE_D,
lv_EV_READ_ONLY_CHANGED TYPE BOOLE_D,
lv_IS_DATA TYPE DATA,
lv_IS_UIBB_KEY TYPE CL_FPM_EVENT=>TY_S_UIBB_KEY,
lv_IT_DATA TYPE DATA,
lv_IT_SELECTED_LINES TYPE RSTABIXTAB,
lv_IV_DATA_CHANGED TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>GET_FIELD_PROPERTIES(
EXPORTING
IS_DATA = lv_IS_DATA
IS_UIBB_KEY = lv_IS_UIBB_KEY
IT_DATA = lv_IT_DATA
IT_SELECTED_LINES = lv_IT_SELECTED_LINES
IV_DATA_CHANGED = lv_IV_DATA_CHANGED
IMPORTING
ET_FIELD_PROPS = lv_ET_FIELD_PROPS
ET_FIELD_PROPS_EXT = lv_ET_FIELD_PROPS_EXT
EV_FIELD_PROPS_CHANGED = lv_EV_FIELD_PROPS_CHANGED
EV_READ_ONLY_CHANGED = lv_EV_READ_ONLY_CHANGED
CHANGING
CT_FIELD_USAGES = lv_CT_FIELD_USAGES ).

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!