HANDLE_USER_COMMAND SAP Method Handle User Command of Added Toolbar Buttons
Below is documentation, parameters and attributes of ABAP Method HANDLE_USER_COMMAND within SAP class IF_BADI_IUID_STATUS_BOARD. 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_BADI_IUID_STATUS_BOARD into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method HANDLE_USER_COMMAND can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method HANDLE_USER_COMMAND
.| Name | Type | Data Type | Description | Default Value |
| IR_STATUS_BOARD | Importing | TYPE REF TO CL_GUI_ALV_GRID | ALV Grid of IUID Status Board | |
| IV_LOG_HANDLE | Importing | TYPE BALLOGHNDL | Application Log Handle | |
| IV_UCOMM | Importing | TYPE UI_FUNC | Triggered Function Code | |
| CT_STATUS_BOARD | Changing | TYPE IUID_STATUS_BOARD_TAB | Table Containing Data of IUID Status Board |
Exceptions of Method HANDLE_USER_COMMAND
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_STATUS_BOARD TYPE IUID_STATUS_BOARD_TAB,
lv_IR_STATUS_BOARD TYPE CL_GUI_ALV_GRID,
lv_IV_LOG_HANDLE TYPE BALLOGHNDL,
lv_IV_UCOMM TYPE UI_FUNC,
lv_other TYPE c.
CALL METHOD IF_BADI_IUID_STATUS_BOARD=>HANDLE_USER_COMMAND(
EXPORTING
IR_STATUS_BOARD = lv_IR_STATUS_BOARD
IV_LOG_HANDLE = lv_IV_LOG_HANDLE
IV_UCOMM = lv_IV_UCOMM
CHANGING
CT_STATUS_BOARD = lv_CT_STATUS_BOARD ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects