CASE E_SALV_FUNCTION. * Make ALV as Editable ALV WHEN 'TEST'. * Editable ALV IF GV_EDIT IS INITIAL. GV_EDIT = 'X'. LS_LAYOUT-EDIT = 'X'. ELSE. CLEAR GV_EDIT. CLEAR LS_LAYOUT-EDIT. ENDIF. * Set the front layout of ALV CALL METHOD LO_GRID->SET_FRONTEND_LAYOUT EXPORTING IS_...
* field enabled or disabled for editing, depending on parameter I_EDITABLE. * If you do not supply parameter I_FIELDNAME or supply it INITIAL, you get * all fields of the table enabled or disabled for editing, depending on parameter I_EDITABLE. * Parameter I_SALV_TABLE is the CL_SALV_...
cl_salv_table - How to set column editable/input Former Member 2013 May 30 10:36 AM 0 Kudos 29,401 SAP Managed Tags: ABAP Development Hi All, I am using the class "cl_salv_table" on display an ALV grid. (Factory method) How can I set the only one column of ...
It seems the confirmation-prompt is only expected to be used in an editable ALV which the SALV does not support so there is no confirmation-prompt support at all. However you may set a custom GUI-Status like salv->set_screen_status( pfstatus = 'STANDARD_ALVGRID' report = gc_repi...
cl_salv_table - How to set column editable/input Former Member 2013 May 30 10:36 AM 0 Kudos 29,392 SAP Managed Tags: ABAP Development Hi All, I am using the class "cl_salv_table" on display an ALV grid. (Factory method) How can I set the only one column of ...
ALV Object Model(CL_SALV_TABLE) does not support editable cells, nor does it support editable columns or rows. You must use the class CL_GUI_ALV_GRID in order to have this functionallity. PS;不过万能的开发还是有办法的,就是麻烦一些……...
效果: 点test 按钮切换到可编辑状态 建status 代码 REPORTZLM_ALV006. *---* * Define the Local class inheriting from the CL_SALV_MODEL_LIST * to get an access of the model, controller and adapter which inturn * provides the Grid Object *...
Solved: Hi Guru's Can anyone please tell how to make an ALV have editable and subsequent save functionality for fields using CL_SALV_TABLE. Thanks in Advance Satish
Looking at the methods of class <b>CL_SALV_COLUMN</b> you will not find any method dealing with <i>making columns editable</i>. If we have no editable cells then we cannot select values from F4 search helps (because we cannot change the cell values). Thus far I am not aware of ...