GET_DEFINITION SAP Method of class IF_FPM_GUIBB_LIST









Below is documentation, parameters and attributes of ABAP Method GET_DEFINITION within SAP class IF_FPM_GUIBB_LIST. 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 IF_FPM_GUIBB_LIST 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_DEFINITION can also be found below:

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


Parameters of Method GET_DEFINITION

.

NameTypeData TypeDescriptionDefault Value
EO_FIELD_CATALOGExportingTYPE REF TO
CL_ABAP_TABLEDESCR
Runtime Type Services
ES_MESSAGEExportingTYPE
FPMGB_S_T100_MESSAGE
FPMGB T100 messages
ES_OPTIONSExportingTYPE
FPMGB_S_LIST_OPTIONS
FPM LIST UIBB: Contains elements for adjustments
ET_ACTION_DEFINITIONExportingTYPE
FPMGB_T_ACTIONDEF
Action Definition
ET_DND_DEFINITIONExportingTYPE
FPMGB_T_DND_DEFINITION
Drag and Drop Attributes Definition
ET_FIELD_DESCRIPTIONExportingTYPE
FPMGB_T_LISTFIELD_DESCR
Form Fielddescription
ET_ROW_ACTIONSExportingTYPE
FPMGB_T_ROW_ACTION
Row actions
ET_SPECIAL_GROUPSExportingTYPE
FPMGB_T_SPECIAL_GROUPS
Special Groups for GUIBB Field Grouping
EV_ADDITIONAL_ERROR_INFOExportingTYPE
DOKU_OBJ
Documentation Object



Exceptions of Method GET_DEFINITION

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_FPM_GUIBB_LIST.
DATA: lv_EO_FIELD_CATALOG TYPE CL_ABAP_TABLEDESCR,
lv_ES_MESSAGE TYPE FPMGB_S_T100_MESSAGE,
lv_ES_OPTIONS TYPE FPMGB_S_LIST_OPTIONS,
lv_ET_ACTION_DEFINITION TYPE FPMGB_T_ACTIONDEF,
lv_ET_DND_DEFINITION TYPE FPMGB_T_DND_DEFINITION,
lv_ET_FIELD_DESCRIPTION TYPE FPMGB_T_LISTFIELD_DESCR,
lv_ET_ROW_ACTIONS TYPE FPMGB_T_ROW_ACTION,
lv_ET_SPECIAL_GROUPS TYPE FPMGB_T_SPECIAL_GROUPS,
lv_EV_ADDITIONAL_ERROR_INFO TYPE DOKU_OBJ,
lv_other TYPE c.

CALL METHOD lo_class=>GET_DEFINITION(
IMPORTING
EO_FIELD_CATALOG = lv_EO_FIELD_CATALOG
ES_MESSAGE = lv_ES_MESSAGE
ES_OPTIONS = lv_ES_OPTIONS
ET_ACTION_DEFINITION = lv_ET_ACTION_DEFINITION
ET_DND_DEFINITION = lv_ET_DND_DEFINITION
ET_FIELD_DESCRIPTION = lv_ET_FIELD_DESCRIPTION
ET_ROW_ACTIONS = lv_ET_ROW_ACTIONS
ET_SPECIAL_GROUPS = lv_ET_SPECIAL_GROUPS
EV_ADDITIONAL_ERROR_INFO = lv_EV_ADDITIONAL_ERROR_INFO ).

Links to Related Class(s)

IF_FPM_G...
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!