DATA: O_CONTROL TYPE REF TO CL_SALV_CONTROLLER_MODEL, O_ADAPTER TYPE REF TO CL_SALV_ADAPTER. METHODS: GRABE_MODEL IMPORTING IO_MODEL TYPE REF TO CL_SALV_MODEL, GRABE_CONTROLLER, GRABE_ADAPTER. PRIVATE SECTION. DATA: LO_MODEL TYPE REF TO CL_SALV_MODEL. ENDCLASS. "LCL_SALV_MODEL DEFINI...
* The CL_SALV_TABLE is disabled for editing by default. *---* set_editable IMPORTING value(i_fieldname) TYPE csequence OPTIONAL i_salv_table TYPE REF TO cl_salv_table value(i_editable) TYPE abap_bool DEFAULT abap_true value(i_refresh) TYPE abap_bool DEFAULT abap_true. PRIVATE SECTION....
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...
20 21 item->set_type( if_salv_c_item_type=>checkbox ). 22 23 IF NOT gv_flag IS INITIAL. 24 25 item->set_checked( abap_true ). 26 27 ENDIF. 28 29 item->set_editable( abap_true ). 30 31 ENDIF. 32 33 &--- 34 35 *& Form CHECKBOX_CHANGE 36 37 &--- 38 39 te...
IT_OUTTAB = GT_SPFLI[] "empty table IT_FIELDCATALOG = GT_FIELDCAT_LVC[]. I need to set checkbox on parent node like on second image. I select it by red box on first image. I cannot use example like on second image because there are used class cl_salv_nodes...and some things...
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;不过万能的开发还是有办法的,就是麻烦一些……...
INTOTABLEME->T_DATA UPTO30ROWS. ENDMETHOD."get_data METHODGENERATE_OUTPUT. TRY. CL_SALV_TABLE=>FACTORY( EXPORTING LIST_DISPLAY=ABAP_FALSE IMPORTING R_SALV_TABLE=O_SALV CHANGING T_TABLE=T_DATA). CATCHCX_SALV_MSG."#EC NO_HANDLER
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