<?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/3372857#M809807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also tried this workaround, but it is still quite complicated...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is another way to get acces to this functionality,&lt;/P&gt;&lt;P&gt;by using function module GET_GLOBALS_FROM_SLVC_FULLSCR&lt;/P&gt;&lt;P&gt;to get the reference to CL_GUI_ALV_GRID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example you just have to enter in the command field:&lt;/P&gt;&lt;P&gt;%_EDIT_ALL - to set the whole ALV editable&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;%_EDIT_[FIELDNAME] - to set only one column editable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in addition i added a check, so this is only available on NON-productive systems&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZTEST_ALV_EDITABLE
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT  ztest_alv_editable.

*----------------------------------------------------------------------*
*       CLASS lcl_event_handler DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_event_handler DEFINITION.

 PUBLIC SECTION.
   METHODS:
     on_user_command
       FOR EVENT added_function OF cl_salv_events
         IMPORTING e_salv_function,
     handle_data_changed
       FOR EVENT data_changed OF cl_gui_alv_grid
         IMPORTING er_data_changed sender.

ENDCLASS.                    "lcl_event_handler DEFINITION

*----------------------------------------------------------------------*
*       CLASS lcl_report DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_report DEFINITION.

 PUBLIC SECTION.
   DATA: gt_tab TYPE REF TO data,
         gr_alv TYPE REF TO cl_salv_table.

   METHODS: constructor,
            show_alv.

ENDCLASS.                    "lcl_report DEFINITION

PARAMETERS: p_table TYPE tabname.

DATA: lr_report TYPE REF TO lcl_report.

START-OF-SELECTION.

 CREATE OBJECT lr_report.
 lr_report-&amp;gt;show_alv( ).

*----------------------------------------------------------------------*
*       CLASS lcl_report IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_report IMPLEMENTATION.

 METHOD constructor.

   FIELD-SYMBOLS: &amp;lt;lt_tab&amp;gt; TYPE ANY TABLE.

   CREATE DATA gt_tab TYPE TABLE OF (p_table).
   ASSIGN gt_tab-&amp;gt;* TO &amp;lt;lt_tab&amp;gt;.

   SELECT * FROM (p_table) INTO TABLE &amp;lt;lt_tab&amp;gt;.

 ENDMETHOD.                    "constructor

 METHOD show_alv.

   DATA: lr_func TYPE REF TO cl_salv_functions_list,
         lr_events    TYPE REF TO cl_salv_events_table,
         lr_handler   TYPE REF TO lcl_event_handler.

   FIELD-SYMBOLS: &amp;lt;lt_tab&amp;gt; TYPE ANY TABLE.
   ASSIGN gt_tab-&amp;gt;* TO &amp;lt;lt_tab&amp;gt;.

   TRY.
       cl_salv_table=&amp;gt;factory(
       IMPORTING
         r_salv_table  = gr_alv
       CHANGING
         t_table       = &amp;lt;lt_tab&amp;gt; ).
     CATCH cx_salv_msg.
   ENDTRY.

   lr_func = gr_alv-&amp;gt;get_functions( ).
   lr_func-&amp;gt;set_all( 'X' ).

   lr_events = gr_alv-&amp;gt;get_event( ).
   CREATE OBJECT lr_handler.
   SET HANDLER lr_handler-&amp;gt;on_user_command FOR lr_events.

   gr_alv-&amp;gt;display( ).

 ENDMETHOD.                    "show_alv

ENDCLASS.                    "lcl_report IMPLEMENTATION

*----------------------------------------------------------------------*
*       CLASS lcl_event_handler IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_event_handler IMPLEMENTATION.

 METHOD on_user_command.

   DATA: lr_grid         TYPE REF TO cl_gui_alv_grid,
         lv_layout       TYPE lvc_s_layo,
         lt_fieldcat     TYPE lvc_t_fcat,
         lr_grid_events  TYPE REF TO lcl_event_handler,
         lv_fieldname    TYPE lvc_fname.

   FIELD-SYMBOLS: &amp;lt;ls_fieldcat&amp;gt; LIKE LINE OF lt_fieldcat.

   CALL FUNCTION 'PRGN_CHECK_SYSTEM_PRODUCTIVE'
     EXCEPTIONS
       client_is_productive = 1
       OTHERS               = 2.

   IF sy-subrc NE 1.

     IF e_salv_function(7) EQ '%_EDIT_'.

       IF e_salv_function NE '%_EDIT_ALL'.
         lv_fieldname = e_salv_function+7.
       ELSE.
         CLEAR lv_fieldname.
       ENDIF.

       CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
         IMPORTING
           e_grid = lr_grid.

       CALL METHOD lr_grid-&amp;gt;get_frontend_layout
         IMPORTING
           es_layout = lv_layout.

       IF lv_fieldname IS NOT INITIAL.

         lr_grid-&amp;gt;get_backend_fieldcatalog(
           IMPORTING et_fieldcatalog = lt_fieldcat ).

         READ TABLE lt_fieldcat ASSIGNING &amp;lt;ls_fieldcat&amp;gt;
           WITH KEY fieldname = lv_fieldname.

         IF &amp;lt;ls_fieldcat&amp;gt; IS NOT ASSIGNED.
           MESSAGE w398(00)
             WITH  'Fieldname'
                   lv_fieldname
                   'does not exist'.
           EXIT.
         ENDIF.

         IF &amp;lt;ls_fieldcat&amp;gt;-edit = 'X'.

           lv_layout-no_toolbar = abap_true.
           &amp;lt;ls_fieldcat&amp;gt;-edit = abap_false.

         ELSE.

           lv_layout-no_toolbar = abap_false.
           &amp;lt;ls_fieldcat&amp;gt;-edit = abap_true.

         ENDIF.

         lr_grid-&amp;gt;set_frontend_fieldcatalog(
         EXPORTING it_fieldcatalog = lt_fieldcat ).

       ELSE.

         IF lv_layout-edit = abap_true.

           CLEAR lv_layout-edit.

         ELSE.

           lv_layout-edit = abap_true.

         ENDIF.

       ENDIF.

       CALL METHOD lr_grid-&amp;gt;register_edit_event
         EXPORTING
           i_event_id = cl_gui_alv_grid=&amp;gt;mc_evt_enter.

       CREATE OBJECT lr_grid_events.
       SET HANDLER lr_grid_events-&amp;gt;handle_data_changed FOR lr_grid.

       CALL METHOD lr_grid-&amp;gt;set_frontend_layout
         EXPORTING
           is_layout = lv_layout.

       CALL METHOD lr_grid-&amp;gt;refresh_table_display( ).

     ENDIF.
   ENDIF.

 ENDMETHOD.                    "on_user_command&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jakob Simon Mainka on Dec 14, 2011 12:17 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Dec 2011 23:16:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-13T23:16:45Z</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>

