CALL_EVENT_TABLE SAP Method Event Selection List Structure
Below is documentation, parameters and attributes of ABAP Method CALL_EVENT_TABLE within SAP class CL_CRM_BSP_F4_HELP. 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 CL_CRM_BSP_F4_HELP 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 CALL_EVENT_TABLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CALL_EVENT_TABLE
.| Name | Type | Data Type | Description | Default Value |
| IT_SELECTED_OBJECT_KEY | Importing | TYPE CRMT_BSP_OBJECTKEY_TAB | Table of Object Keys | |
| I_BLVIEW | Importing | TYPE STRING | ||
| I_BUTTONGROUP_ID | Importing | TYPE STRING | ||
| I_EVENTGROUP | Importing | TYPE STRING | ||
| I_OBJECT_KEY | Importing | TYPE CRMT_BSP_OBJECTKEY | Object Key | |
| I_STRUCTURE_NAME | Importing | TYPE STRING | ||
| I_TOOLBARGROUP | Importing | TYPE STRING |
Exceptions of Method CALL_EVENT_TABLE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CRM_BSP_F4_HELP.
DATA: lv_IT_SELECTED_OBJECT_KEY TYPE CRMT_BSP_OBJECTKEY_TAB,
lv_I_BLVIEW TYPE STRING,
lv_I_BUTTONGROUP_ID TYPE STRING,
lv_I_EVENTGROUP TYPE STRING,
lv_I_OBJECT_KEY TYPE CRMT_BSP_OBJECTKEY,
lv_I_STRUCTURE_NAME TYPE STRING,
lv_I_TOOLBARGROUP TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>CALL_EVENT_TABLE(
EXPORTING
IT_SELECTED_OBJECT_KEY = lv_IT_SELECTED_OBJECT_KEY
I_BLVIEW = lv_I_BLVIEW
I_BUTTONGROUP_ID = lv_I_BUTTONGROUP_ID
I_EVENTGROUP = lv_I_EVENTGROUP
I_OBJECT_KEY = lv_I_OBJECT_KEY
I_STRUCTURE_NAME = lv_I_STRUCTURE_NAME
I_TOOLBARGROUP = lv_I_TOOLBARGROUP ).
Links to Related Class(s)
CL_CRM_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects