GET_AVAILABLE_SPACE_INFO SAP Method determines the number of cells available in bottom right dir
Below is documentation, parameters and attributes of ABAP Method GET_AVAILABLE_SPACE_INFO 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 GET_AVAILABLE_SPACE_INFO can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_AVAILABLE_SPACE_INFO
.| Name | Type | Data Type | Description | Default Value |
| IS_GROUP_MEMBER_INFO | Importing | TYPE CL_CHTMLB_CONFIG_UTILITY=>GROUP_MEMBER_INFO_STRUC | ||
| IT_GRID | Importing | TYPE CONFIG_GRID_TAB | contains all cells | |
| IV_COLUMN | Importing | TYPE I | column of cell | |
| IV_ROW | Importing | TYPE I | row of cell | |
| EV_INFO | Returning | TYPE STRING |
Exceptions of Method GET_AVAILABLE_SPACE_INFO
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CHTMLB_CONFIG_GRID.
DATA: lv_EV_INFO TYPE STRING,
lv_IS_GROUP_MEMBER_INFO TYPE CL_CHTMLB_CONFIG_UTILITY=>GROUP_MEMBER_INFO_STRUC,
lv_IT_GRID TYPE CONFIG_GRID_TAB,
lv_IV_COLUMN TYPE I,
lv_IV_ROW TYPE I,
lv_other TYPE c.
CALL METHOD lo_class=>GET_AVAILABLE_SPACE_INFO(
EXPORTING
IS_GROUP_MEMBER_INFO = lv_IS_GROUP_MEMBER_INFO
IT_GRID = lv_IT_GRID
IV_COLUMN = lv_IV_COLUMN
IV_ROW = lv_IV_ROW
RECEIVING
EV_INFO = lv_EV_INFO )
"Alternate coding for Method Call with returning parameter
lv_EV_INFO = lo_class=>GET_AVAILABLE_SPACE_INFO(
EXPORTING
IS_GROUP_MEMBER_INFO = lv_IS_GROUP_MEMBER_INFO
IT_GRID = lv_IT_GRID
IV_COLUMN = lv_IV_COLUMN
IV_ROW = lv_IV_ROW ).
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