RENDER_CELL SAP Method Render Cells
Below is documentation, parameters and attributes of ABAP Method RENDER_CELL within SAP class CL_CHTMLB_CONFIG_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_CHTMLB_CONFIG_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 RENDER_CELL can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method RENDER_CELL
.| Name | Type | Data Type | Description | Default Value |
| IS_CELL | Importing | TYPE CONFIG_CELL_STRUC | ||
| IS_GROUP_MEMBER_INFO | Importing | TYPE CL_CHTMLB_CONFIG_UTILITY=>GROUP_MEMBER_INFO_STRUC | ||
| IT_GRID | Importing | TYPE CONFIG_GRID_TAB | ||
| IV_CLASS | Importing | TYPE STRING | Style class for cell | |
| IV_PANEL | Importing | TYPE I | ||
| EV_HTML | Returning | TYPE STRING |
Exceptions of Method RENDER_CELL
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CHTMLB_CONFIG_GRID.
DATA: lv_EV_HTML TYPE STRING,
lv_IS_CELL TYPE CONFIG_CELL_STRUC,
lv_IS_GROUP_MEMBER_INFO TYPE CL_CHTMLB_CONFIG_UTILITY=>GROUP_MEMBER_INFO_STRUC,
lv_IT_GRID TYPE CONFIG_GRID_TAB,
lv_IV_CLASS TYPE STRING,
lv_IV_PANEL TYPE I,
lv_other TYPE c.
CALL METHOD lo_class=>RENDER_CELL(
EXPORTING
IS_CELL = lv_IS_CELL
IS_GROUP_MEMBER_INFO = lv_IS_GROUP_MEMBER_INFO
IT_GRID = lv_IT_GRID
IV_CLASS = lv_IV_CLASS
IV_PANEL = lv_IV_PANEL
RECEIVING
EV_HTML = lv_EV_HTML )
"Alternate coding for Method Call with returning parameter
lv_EV_HTML = lo_class=>RENDER_CELL(
EXPORTING
IS_CELL = lv_IS_CELL
IS_GROUP_MEMBER_INFO = lv_IS_GROUP_MEMBER_INFO
IT_GRID = lv_IT_GRID
IV_CLASS = lv_IV_CLASS
IV_PANEL = lv_IV_PANEL ).
Links to Related Class(s)
CL_CHTML...Full list of available SAP object classes
Search for further information about these or an SAP related objects