LIST_PROCESSING_EVENTS SAP Method Interface Method Classic ALV to ALV Control









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

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


Parameters of Method LIST_PROCESSING_EVENTS

.

NameTypeData TypeDescriptionDefault Value
IP_SUBTOT_LINEImportingTYPE REF TO
DATA
Subtotal Line
IS_SUBTOTTXT_INFOImportingTYPE
LVC_S_STXT
Subtotal Text Information
I_DYNDOC_IDImportingTYPE REF TO
CL_DD_DOCUMENT
Dynamic Document
I_EVENT_NAMEImportingTYPE
CHAR30
Event Name List Processing
I_SUBTOTTXTImportingLIKE
Subtotal Text
I_TABLE_INDEXImportingTYPE
SYINDEX
Loops, Current Loop Pass
C_SUBTOTTXTChangingTYPE
LVC_DISTXT
Subtotal Text



Exceptions of Method LIST_PROCESSING_EVENTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_GUI_ALV_GRID.
DATA: lv_C_SUBTOTTXT TYPE LVC_DISTXT,
lv_IP_SUBTOT_LINE TYPE DATA,
lv_IS_SUBTOTTXT_INFO TYPE LVC_S_STXT,
lv_I_DYNDOC_ID TYPE CL_DD_DOCUMENT,
lv_I_EVENT_NAME TYPE CHAR30,
lv_I_SUBTOTTXT TYPE ,
lv_I_TABLE_INDEX TYPE SYINDEX,
lv_other TYPE c.

CALL METHOD lo_class=>LIST_PROCESSING_EVENTS(
EXPORTING
IP_SUBTOT_LINE = lv_IP_SUBTOT_LINE
IS_SUBTOTTXT_INFO = lv_IS_SUBTOTTXT_INFO
I_DYNDOC_ID = lv_I_DYNDOC_ID
I_EVENT_NAME = lv_I_EVENT_NAME
I_SUBTOTTXT = lv_I_SUBTOTTXT
I_TABLE_INDEX = lv_I_TABLE_INDEX
CHANGING
C_SUBTOTTXT = lv_C_SUBTOTTXT ).

Links to Related Class(s)

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