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
.| Name | Type | Data Type | Description | Default Value |
| IP_SUBTOT_LINE | Importing | TYPE REF TO DATA | Subtotal Line | |
| IS_SUBTOTTXT_INFO | Importing | TYPE LVC_S_STXT | Subtotal Text Information | |
| I_DYNDOC_ID | Importing | TYPE REF TO CL_DD_DOCUMENT | Dynamic Document | |
| I_EVENT_NAME | Importing | TYPE CHAR30 | Event Name List Processing | |
| I_SUBTOTTXT | Importing | LIKE | Subtotal Text | |
| I_TABLE_INDEX | Importing | TYPE SYINDEX | Loops, Current Loop Pass | |
| C_SUBTOTTXT | Changing | TYPE LVC_DISTXT | Subtotal Text |
Exceptions of Method LIST_PROCESSING_EVENTS
This method does not have any exceptionsExample 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