IS_CELL_EDITOR_EDITABLE SAP Method of class CL_FPM_LIST_UTILS
Below is documentation, parameters and attributes of ABAP Method IS_CELL_EDITOR_EDITABLE within SAP class CL_FPM_LIST_UTILS. 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_FPM_LIST_UTILS 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 IS_CELL_EDITOR_EDITABLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method IS_CELL_EDITOR_EDITABLE
.| Name | Type | Data Type | Description | Default Value |
| IO_ABSTRACT_COLUMN | Importing | TYPE REF TO CL_WD_ABSTR_C_TABLE_COLUMN | ||
| IO_ABSTRACT_COLUMN_OLD | Importing | TYPE REF TO CL_WD_ABSTR_TABLE_COLUMN | ||
| IO_CONTEXT | Importing | TYPE REF TO IF_WD_CONTEXT_NODE | Web Dynpro Context | |
| IV_ROW_INDEX | Importing | TYPE I | ||
| IV_TABLE_UI_ID | Importing | TYPE STRING | ||
| RV_IS_EDITABLE | Returning | TYPE ABAP_BOOL |
Exceptions of Method IS_CELL_EDITOR_EDITABLE
This method does not have any exceptionsExample ABAP coding
DATA: lv_IO_ABSTRACT_COLUMN TYPE CL_WD_ABSTR_C_TABLE_COLUMN,
lv_IO_ABSTRACT_COLUMN_OLD TYPE CL_WD_ABSTR_TABLE_COLUMN,
lv_IO_CONTEXT TYPE IF_WD_CONTEXT_NODE,
lv_IV_ROW_INDEX TYPE I,
lv_IV_TABLE_UI_ID TYPE STRING,
lv_RV_IS_EDITABLE TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD CL_FPM_LIST_UTILS=>IS_CELL_EDITOR_EDITABLE(
EXPORTING
IO_ABSTRACT_COLUMN = lv_IO_ABSTRACT_COLUMN
IO_ABSTRACT_COLUMN_OLD = lv_IO_ABSTRACT_COLUMN_OLD
IO_CONTEXT = lv_IO_CONTEXT
IV_ROW_INDEX = lv_IV_ROW_INDEX
IV_TABLE_UI_ID = lv_IV_TABLE_UI_ID
RECEIVING
RV_IS_EDITABLE = lv_RV_IS_EDITABLE )
"Alternate coding for Method Call with returning parameter
lv_RV_IS_EDITABLE = CL_FPM_LIST_UTILS=>IS_CELL_EDITOR_EDITABLE(
EXPORTING
IO_ABSTRACT_COLUMN = lv_IO_ABSTRACT_COLUMN
IO_ABSTRACT_COLUMN_OLD = lv_IO_ABSTRACT_COLUMN_OLD
IO_CONTEXT = lv_IO_CONTEXT
IV_ROW_INDEX = lv_IV_ROW_INDEX
IV_TABLE_UI_ID = lv_IV_TABLE_UI_ID ).
Links to Related Class(s)
CL_FPM_L...Full list of available SAP object classes
Search for further information about these or an SAP related objects