SAP CL_CHTMLB_CONFIG_GRID OO Class - Element-Handler:
CL_CHTMLB_CONFIG_GRID is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class CL_CHTMLB_CONFIG_GRID including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for CL_CHTMLB_CONFIG_GRID is CLG_CHTMLB_CONFIGGRIDMethod list of CL_CHTMLB_CONFIG_GRID SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| CLEAR_TABLE | Clear Grid table | Public |
| CALL METHOD cl_chtmlb_config_grid=>CLEAR_TABLE...more details | ||
| GET_AVAILABLE_SPACE_INFO | determines the number of cells available in bottom right dir | Protected |
| CALL METHOD cl_chtmlb_config_grid=>GET_AVAILABLE_SPACE_INFO...more details | ||
| GET_CLASS_FOR_CELL | get css class for cell | Protected |
| CALL METHOD cl_chtmlb_config_grid=>GET_CLASS_FOR_CELL...more details | ||
| GET_HTML_FROM_TABLE | Get HTML string from table | Protected |
| CALL METHOD cl_chtmlb_config_grid=>GET_HTML_FROM_TABLE...more details | ||
| RENDER_CELL | Render Cells | Protected |
| CALL METHOD cl_chtmlb_config_grid=>RENDER_CELL...more details | ||
| RENDER_TO_TABLE | put HTML into result table | Protected |
| CALL METHOD cl_chtmlb_config_grid=>RENDER_TO_TABLE...more details | ||
|
| ||
| WRAP_UP_TABLE | Wrap up rendering table | Protected |
| CALL METHOD cl_chtmlb_config_grid=>WRAP_UP_TABLE...more details | ||
CL_CHTMLB_CONFIG_GRID attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| ACTIVE | Instance Attribute | indicates whether tag should be rendered (switch) | 'X' | LIKE ABAP_BOOL | Protected |
| GT_CELLS | Instance Attribute | Table of Cells | LIKE CONFIG_CELL_TAB | Public | |
| GT_GRID | Instance Attribute | Grid rendered in table | LIKE CONFIG_GRID_RESULT_TAB | Public | |
| GT_PANEL_GRID | Instance Attribute | Grid with panels | LIKE CONFIG_GRID_PANEL_TAB | Public | |
| GV_ENABLE_DND | Static Attribute | enable dnd from outside | LIKE ABAP_BOOL | Public | |
| GV_HTML | Instance Attribute | HTML | LIKE STRING | Protected | |
| GV_ID_COUNT | Static Attribute | OBSOLETE. Not Delta-Handling compliant. | LIKE STRING | Public | |
| GV_NESTING_LEVEL | Static Attribute | grid nesting level | LIKE I | Public | |
| GV_RENDER_TO_TABLE | Instance Attribute | Render grid into table | LIKE STRING | Public | |
| GV_SHOWINFO | Instance Attribute | Show cell info | LIKE FLAG | Protected |
CL_CHTMLB_CONFIG_GRID types
CONFIG_CELL_STRUC -CONFIG_CELL_TAB -
CONFIG_GRID_PANEL_STRUC -
CONFIG_GRID_PANEL_TAB -
CONFIG_GRID_RESULT_STRUC -
CONFIG_GRID_RESULT_TAB -
CONFIG_GRID_STRUC -
CONFIG_GRID_TAB -
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