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

.

NameTypeData TypeDescriptionDefault Value
IT_SELECTED_OBJECT_KEYImportingTYPE
CRMT_BSP_OBJECTKEY_TAB
Table of Object Keys
I_BLVIEWImportingTYPE
STRING
I_BUTTONGROUP_IDImportingTYPE
STRING
I_EVENTGROUPImportingTYPE
STRING
I_OBJECT_KEYImportingTYPE
CRMT_BSP_OBJECTKEY
Object Key
I_STRUCTURE_NAMEImportingTYPE
STRING
I_TOOLBARGROUPImportingTYPE
STRING



Exceptions of Method CALL_EVENT_TABLE

This method does not have any exceptions

Example 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



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!