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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IO_ABSTRACT_COLUMNImportingTYPE REF TO
CL_WD_ABSTR_C_TABLE_COLUMN
IO_ABSTRACT_COLUMN_OLDImportingTYPE REF TO
CL_WD_ABSTR_TABLE_COLUMN
IO_CONTEXTImportingTYPE REF TO
IF_WD_CONTEXT_NODE
Web Dynpro Context
IV_ROW_INDEXImportingTYPE
I
IV_TABLE_UI_IDImportingTYPE
STRING
RV_IS_EDITABLEReturningTYPE
ABAP_BOOL



Exceptions of Method IS_CELL_EDITOR_EDITABLE

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!