GET_DEFINITION SAP Method of class IF_FPM_GUIBB_FORM_REPEATER
Below is documentation, parameters and attributes of ABAP Method GET_DEFINITION within SAP class IF_FPM_GUIBB_FORM_REPEATER. 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_FORM_REPEATER 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
.| Name | Type | Data Type | Description | Default Value |
| EO_FIELD_CATALOG | Exporting | TYPE REF TO CL_ABAP_TABLEDESCR | Runtime Type Services | |
| ES_MESSAGE | Exporting | TYPE FPMGB_S_T100_MESSAGE | FPMGB T100 messages | |
| ES_OPTIONS | Exporting | TYPE FPMGB_S_FORM_REPEATER_OPTIONS | FPM Form Repeater UIBB: Contains elements for adjustments | |
| ET_ACTION_DEFINITION | Exporting | TYPE FPMGB_T_ACTIONDEF | Action Definition | |
| ET_DND_DEFINITION | Exporting | TYPE FPMGB_T_DND_DEFINITION | Drag and Drop Attributes Definition | |
| ET_FIELD_DESCRIPTION | Exporting | TYPE FPMGB_T_FORMREPFIELD_DESCR | GUIBB From Repeater Field Description | |
| ET_ROW_ACTION | Exporting | TYPE FPMGB_T_ROW_ACTION | Row actions | |
| ET_SPECIAL_GROUP | Exporting | TYPE FPMGB_T_SPECIAL_GROUPS | Special Groups for GUIBB Field Grouping | |
| EV_ADDITIONAL_ERROR_INFO | Exporting | TYPE DOKU_OBJ | Documentation Object |
Exceptions of Method GET_DEFINITION
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_FPM_GUIBB_FORM_REPEATER.
DATA: lv_EO_FIELD_CATALOG TYPE CL_ABAP_TABLEDESCR,
lv_ES_MESSAGE TYPE FPMGB_S_T100_MESSAGE,
lv_ES_OPTIONS TYPE FPMGB_S_FORM_REPEATER_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_FORMREPFIELD_DESCR,
lv_ET_ROW_ACTION TYPE FPMGB_T_ROW_ACTION,
lv_ET_SPECIAL_GROUP 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_ACTION = lv_ET_ROW_ACTION
ET_SPECIAL_GROUP = lv_ET_SPECIAL_GROUP
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