<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: cl_salv_table --needs editable functionality -SAP please provide this in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372854#M809804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;Thanks for the support&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I copied THIS from one of the Blogs -- it's an UNOFFICIAL and probably not a recommended way but it will provide some limited edit functionality -- however full edit stuff like ON DATA CHANGE etc isn't readily implementable even using this get around&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Thanks to the original blogger --can't remember who it was however).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM  z_salv_test_selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Simple ALV display using cl_SALV factory class but with added EDIT functionality&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt; &amp;lt;f_tabl&amp;gt; TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;p_tname TYPE tabname16 OBLIGATORY,&lt;/P&gt;&lt;P&gt;p_rows(5) TYPE c DEFAULT '300'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Define the Local class inheriting from the CL_SALV_MODEL_LIST&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; to get an access of the model, controller and adapter which inturn&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; provides the Grid Object&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_salv_model DEFINITION INHERITING FROM cl_salv_model_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    DATA: o_control TYPE REF TO cl_salv_controller_model,&lt;/P&gt;&lt;P&gt;          o_adapter TYPE REF TO cl_salv_adapter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;      grabe_model&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          io_model TYPE REF TO cl_salv_model,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      grabe_controller,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      grabe_adapter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PRIVATE SECTION.&lt;/P&gt;&lt;P&gt;    DATA: lo_model TYPE REF TO cl_salv_model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "LCL_SALV_MODEL DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Event handler for the added buttons&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_event_handler DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;      on_user_command FOR EVENT added_function OF cl_salv_events&lt;/P&gt;&lt;P&gt;        IMPORTING e_salv_function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_event_handler DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Local Report class - Definition&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_report DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    TYPES: ty_zps_ccmap TYPE STANDARD TABLE OF zps_ccmap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: t_data TYPE ty_zps_ccmap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: o_salv       TYPE REF TO cl_salv_table.&lt;/P&gt;&lt;P&gt;    DATA: o_salv_model TYPE REF TO lcl_salv_model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;      get_data&lt;/P&gt;&lt;P&gt;      EXCEPTIONS no_data_found,&lt;/P&gt;&lt;P&gt;      check_selection    "Dynamic table definition&lt;/P&gt;&lt;P&gt;      EXCEPTIONS invalid_table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      generate_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PRIVATE SECTION.&lt;/P&gt;&lt;P&gt;    TYPE-POOLS: abap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: tab TYPE REF TO cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;   wa_tab TYPE REF TO cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;   comp_tab TYPE cl_abap_structdescr=&amp;gt;component_table,&lt;/P&gt;&lt;P&gt;   i_tab TYPE REF TO cl_abap_tabledescr,&lt;/P&gt;&lt;P&gt;   i_table TYPE REF TO data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_report DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Global data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lo_report TYPE REF TO lcl_report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT lo_report.&lt;/P&gt;&lt;P&gt;  CALL METHOD lo_report-&amp;gt;check_selection&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      invalid_table = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e001(00) WITH&lt;/P&gt;&lt;P&gt;    p_tname ' is not a Transparant Table'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Start of selection&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  IF lo_report IS INITIAL.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT lo_report.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD lo_report-&amp;gt;get_data&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      no_data_found = 1.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE i001(00) WITH 'No data found'.&lt;/P&gt;&lt;P&gt;    lo_report-&amp;gt;get_data( ).&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    lo_report-&amp;gt;generate_output( ).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Local Report class - Implementation&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_report IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD check_selection.&lt;/P&gt;&lt;P&gt;    SELECT COUNT( * )&lt;/P&gt;&lt;P&gt; FROM dd02l&lt;/P&gt;&lt;P&gt; WHERE tabname = p_tname&lt;/P&gt;&lt;P&gt; AND as4local = 'A'&lt;/P&gt;&lt;P&gt; AND tabclass = 'TRANSP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      RAISE invalid_table.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "check_selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD get_data.&lt;/P&gt;&lt;P&gt;    tab ?= cl_abap_typedescr=&amp;gt;describe_by_name( p_tname ).&lt;/P&gt;&lt;P&gt;    comp_tab = tab-&amp;gt;get_components( ).&lt;/P&gt;&lt;P&gt;    wa_tab = cl_abap_structdescr=&amp;gt;create( comp_tab ).&lt;/P&gt;&lt;P&gt;    i_tab = cl_abap_tabledescr=&amp;gt;create( wa_tab ).&lt;/P&gt;&lt;P&gt;    CREATE DATA i_table TYPE HANDLE i_tab.&lt;/P&gt;&lt;P&gt;    ASSIGN i_table-&amp;gt;* TO &amp;lt;f_tabl&amp;gt;.&lt;/P&gt;&lt;P&gt;    IF p_rows IS INITIAL.&lt;/P&gt;&lt;P&gt;      p_rows = '50000'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Get data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT * FROM (p_tname)&lt;/P&gt;&lt;P&gt;    INTO TABLE &amp;lt;f_tabl&amp;gt;&lt;/P&gt;&lt;P&gt;    UP TO p_rows ROWS.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      RAISE no_data_found.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "get_data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD generate_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...New ALV Instance ...............................................&lt;/P&gt;&lt;P&gt;    TRY.&lt;/P&gt;&lt;P&gt;        cl_salv_table=&amp;gt;factory(&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         r_container    = w_alv1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            list_display = abap_false&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            r_salv_table = o_salv&lt;/P&gt;&lt;P&gt;          CHANGING&lt;/P&gt;&lt;P&gt;            t_table      = &amp;lt;f_tabl&amp;gt; ).&lt;/P&gt;&lt;P&gt;      CATCH cx_salv_msg.                                "#EC NO_HANDLER&lt;/P&gt;&lt;P&gt;    ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...PF Status.......................................................&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Add MYFUNCTION from the report SALV_DEMO_TABLE_EVENTS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    o_salv-&amp;gt;set_screen_status(&lt;/P&gt;&lt;P&gt;      pfstatus      =  'SALV_STANDARD'&lt;/P&gt;&lt;P&gt;      report        =  'SALV_DEMO_TABLE_EVENTS'&lt;/P&gt;&lt;P&gt;      set_functions = o_salv-&amp;gt;c_functions_all ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...Event handler for the button.....................................&lt;/P&gt;&lt;P&gt;    DATA: lo_events TYPE REF TO cl_salv_events_table,&lt;/P&gt;&lt;P&gt;          lo_event_h TYPE REF TO lcl_event_handler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;event object&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    lo_events = o_salv-&amp;gt;get_event( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;event handler&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CREATE OBJECT lo_event_h.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;setting up the event handler&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    SET HANDLER lo_event_h-&amp;gt;on_user_command FOR lo_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...Get Model Object ...............................................&lt;/P&gt;&lt;P&gt;    DATA: lo_alv_mod TYPE REF TO cl_salv_model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Narrow casting&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    lo_alv_mod ?= o_salv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  object for the local inherited class from the CL_SALV_MODEL_LIST&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CREATE OBJECT o_salv_model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  grabe model to use it later&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD o_salv_model-&amp;gt;grabe_model&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        io_model = lo_alv_mod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...Generate ALV output ...............................................&lt;/P&gt;&lt;P&gt;    o_salv-&amp;gt;display( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "generate_output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_report IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;LCL_SALV_MODEL implementation&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_salv_model IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD grabe_model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  save the model&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    lo_model = io_model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "grabe_model&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD grabe_controller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  save the controller&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    o_control = lo_model-&amp;gt;r_controller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "grabe_controller&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD grabe_adapter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  save the adapter from controller&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    o_adapter ?= lo_model-&amp;gt;r_controller-&amp;gt;r_adapter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "grabe_adapter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "LCL_SALV_MODEL IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Event Handler for the SALV&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_event_handler IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD on_user_command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: lo_grid TYPE REF TO cl_gui_alv_grid,&lt;/P&gt;&lt;P&gt;          lo_full_adap TYPE REF TO cl_salv_fullscreen_adapter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: ls_layout TYPE lvc_s_layo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE e_salv_function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Make ALV as Editable ALV&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      WHEN 'MYFUNCTION'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Contorller&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        CALL METHOD lo_report-&amp;gt;o_salv_model-&amp;gt;grabe_controller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Adapter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        CALL METHOD lo_report-&amp;gt;o_salv_model-&amp;gt;grabe_adapter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Fullscreen Adapter (Down Casting)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        lo_full_adap ?= lo_report-&amp;gt;o_salv_model-&amp;gt;o_adapter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Get the Grid&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        lo_grid = lo_full_adap-&amp;gt;get_grid( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Got the Grid .. ?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IF lo_grid IS BOUND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        Editable ALV&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ls_layout-edit = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        Set the front layout of ALV&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          CALL METHOD lo_grid-&amp;gt;set_frontend_layout&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              is_layout = ls_layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        refresh the table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          CALL METHOD lo_grid-&amp;gt;refresh_table_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "on_user_command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_event_handler IMPLEMENTATION&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Nov 2011 11:01:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-01T11:01:37Z</dc:date>
    <item>
      <title>cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372776#M809726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody&lt;/P&gt;&lt;P&gt;The new cl_salv_table class is fine for a lot of things but it definitely needs EDIT type of functionality -- doesn't need a huge amount but the user should be able to edit individual cell(s) and insert / delete lines as with the current cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To show SAP that this function is needed just postunder this a single line Agree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If enough replies come back I'm sure SAP will consider this in future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd love to do a Poll but this Forum doesn't seem to have that facility available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jimbo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 15:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372776#M809726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T15:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372777#M809727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We need this definately !&lt;/P&gt;&lt;P&gt;Currently I'm using *alv for editable tables and *salv for view tables, that's not satisfactorily.&lt;/P&gt;&lt;P&gt;Furthermore the *alv API disagrees with the modern *salv OO concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope SAP will implement the edit issue in *salv !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Olaf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 16:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372777#M809727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T16:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372778#M809728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add me to this list.  I can't believe they didn't provide this.  I just found out about this issue today from one of our developers who was using the old grid (reuse_alv) because of this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since all of our employees went to the new grid (cl_salv) class and don't know the old grid other than from examples, now we've got an issue because we stated up front to all of our contractors that only the new grid was to be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know what SAP is going to say - use a dialog - that's a major pain compared to the old grid way.  And now I've got a standards issue on my hands - oh what fun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 15:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372778#M809728</guid>
      <dc:creator>bruce_hartley</dc:creator>
      <dc:date>2008-07-24T15:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372779#M809729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;And now I've got a standards issue on my hands - oh what fun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I love standards.  So many to choose from... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 15:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372779#M809729</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-07-24T15:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372780#M809730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I strongly support this suggestion.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2008 09:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372780#M809730</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-07-25T09:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372781#M809731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Count me in. I haven't used this new ALV OM a lot yet, but I've discovered this edit mode lack yesterday on a thread while searching for another functionality.&lt;/P&gt;&lt;P&gt;I just couldn't believe it. What would happen if you develop a fairly complicated program using CL_SALV* classes and then the user requests to "just add editing capability on this field and we're done" (which is quite common)? Half of the program would have to be redone using CL_GUI_ALV_GRID?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2008 15:08:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372781#M809731</guid>
      <dc:creator>alejandro_bindi</dc:creator>
      <dc:date>2008-07-25T15:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372782#M809732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tried a bit of "Old Fashioned" Hacking --- hope the US military are not reading this or I might be extradited to the US to serve 50 years in jail for "Terrorism" (referring to what the US are attempting to do to one of our UK citizens at the moment).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inheriting the the cl_salv class doesn't actually help as this cl_salv_class makes calls all over the place and by the time you are done you are better off using the cl_gui_alv_grid anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I certainly can understand the concept of making a quick easy callable ALV display has attractions but as people have posted users often want an "Editable" facility after a report has been designed.&lt;/P&gt;&lt;P&gt;I'm actually surprised this wasn't built in to the factory model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jimbo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 21:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372782#M809732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T21:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372783#M809733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh yes, there should definitely be an editing function!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR Jörg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 09:39:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372783#M809733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-27T09:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372784#M809734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I too join the group, It's very much appreciated if edit option is incorporated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2008 09:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372784#M809734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-29T09:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372785#M809735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also facing the same problem , so include me also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 07:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372785#M809735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T07:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372786#M809736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good thought Include me also.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 10:33:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372786#M809736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-04T10:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372787#M809737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before starting the poll, have look at this work around:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/12187" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/12187&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2009 13:30:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372787#M809737</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-03-04T13:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372788#M809738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am happy about the work-around. But I still think it should be available from cl_salv_table without that.  It's annoying that SAP seems to have abandoned OO ALV in favor of webdynpro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 12:20:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372788#M809738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T12:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372789#M809739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even i like the workaround I too think that there should be and "offical" (and supportet) way of makin an SALV Grid editable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2009 11:31:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372789#M809739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-22T11:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372790#M809740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please addd me to the Group&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Apr 2009 11:17:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372790#M809740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-26T11:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372791#M809741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Supported already!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Flavio Rasseli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Aug 2009 12:34:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372791#M809741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-14T12:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372792#M809742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Flavio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean the ALV editable functionality is now available in CL_SALV_TABLE?  If yes, can you explain which method you used?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Jodie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 09:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372792#M809742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T09:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372793#M809743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No! I mean: the CAUSE is supported by me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 11:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372793#M809743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T11:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372794#M809744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To be fair, the V stands for Viewer, not Editor (cos that would make it ALE and confusing &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; ). SAP should never have opened the original viewer code up for editing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2009 10:21:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372794#M809744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-16T10:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table --needs editable functionality -SAP please provide this</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372795#M809745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so in that case if V stands for viewing there must come an class&lt;/P&gt;&lt;P&gt;CL_SALE_TABLE for the editing which inherits all the methods from CL_SALV_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;question remains the same. we also stick to reuse_alv since the class is not complete with the edit mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards &lt;/P&gt;&lt;P&gt;arthur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 07:20:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-needs-editable-functionality-sap-please-provide-this/m-p/3372795#M809745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-21T07:20:07Z</dc:date>
    </item>
  </channel>
</rss>

