GRID_DISPLAY SAP Method Initialization of Time Since Event
Below is documentation, parameters and attributes of ABAP Method GRID_DISPLAY within SAP class IF_EX_BADI_CCM_INTERNAL. 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_EX_BADI_CCM_INTERNAL 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 GRID_DISPLAY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GRID_DISPLAY
.| Name | Type | Data Type | Description | Default Value |
| IS_ITOB | Importing | TYPE ITOB | Generated Table for View ITOB | |
| CR_TSE_AREA | Changing | TYPE REF TO CL_GUI_ALV_GRID | ALV List Viewer | |
| CR_TSE_CONTAINER | Changing | TYPE REF TO CL_GUI_CUSTOM_CONTAINER | Container for Custom Controls in the Screen Area | |
| CS_LAYOUT | Changing | TYPE LVC_S_LAYO | ALV Control: Layout Structure | |
| CT_TARGDATA | Changing | TYPE TT_CCM_TSE_OUTPUT | Table for TSE Output | |
| CT_TSE_OUTPUT | Changing | TYPE TT_CCM_TSE_OUTPUT | Table for TSE Output |
Exceptions of Method GRID_DISPLAY
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_CCM_INTERNAL.
DATA: lv_CR_TSE_AREA TYPE CL_GUI_ALV_GRID,
lv_CR_TSE_CONTAINER TYPE CL_GUI_CUSTOM_CONTAINER,
lv_CS_LAYOUT TYPE LVC_S_LAYO,
lv_CT_TARGDATA TYPE TT_CCM_TSE_OUTPUT,
lv_CT_TSE_OUTPUT TYPE TT_CCM_TSE_OUTPUT,
lv_IS_ITOB TYPE ITOB,
lv_other TYPE c.
CALL METHOD lo_class=>GRID_DISPLAY(
EXPORTING
IS_ITOB = lv_IS_ITOB
CHANGING
CR_TSE_AREA = lv_CR_TSE_AREA
CR_TSE_CONTAINER = lv_CR_TSE_CONTAINER
CS_LAYOUT = lv_CS_LAYOUT
CT_TARGDATA = lv_CT_TARGDATA
CT_TSE_OUTPUT = lv_CT_TSE_OUTPUT ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects