<?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/3372859#M809809</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZTEST_ALV_EDITABLE&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ztest_alv_editable.&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;      CLASS lcl_event_handler 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;*&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;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&lt;/P&gt;&lt;P&gt;FOR EVENT added_function OF cl_salv_events&lt;/P&gt;&lt;P&gt;IMPORTING e_salv_function,&lt;/P&gt;&lt;P&gt;handle_data_changed&lt;/P&gt;&lt;P&gt;FOR EVENT data_changed OF cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;IMPORTING er_data_changed sender.&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;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;      CLASS lcl_report 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;*&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;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;DATA: gt_tab TYPE REF TO data,&lt;/P&gt;&lt;P&gt;gr_alv TYPE REF TO cl_salv_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHODS: constructor,&lt;/P&gt;&lt;P&gt;show_alv.&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;PARAMETERS: p_table TYPE tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lr_report TYPE REF TO lcl_report.&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;CREATE OBJECT lr_report.&lt;/P&gt;&lt;P&gt;lr_report-&amp;gt;show_alv( ).&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;      CLASS lcl_report 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;*&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;P&gt;CLASS lcl_report IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD constructor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;lt_tab&amp;gt; TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA gt_tab TYPE TABLE OF (p_table).&lt;/P&gt;&lt;P&gt;ASSIGN gt_tab-&amp;gt;* TO &amp;lt;lt_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM (p_table) INTO TABLE &amp;lt;lt_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.                    "constructor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD show_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lr_func TYPE REF TO cl_salv_functions_list,&lt;/P&gt;&lt;P&gt;lr_events    TYPE REF TO cl_salv_events_table,&lt;/P&gt;&lt;P&gt;lr_handler   TYPE REF TO lcl_event_handler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;lt_tab&amp;gt; TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;ASSIGN gt_tab-&amp;gt;* TO &amp;lt;lt_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&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;IMPORTING&lt;/P&gt;&lt;P&gt;r_salv_table  = gr_alv&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;t_table       = &amp;lt;lt_tab&amp;gt; ).&lt;/P&gt;&lt;P&gt;CATCH cx_salv_msg.&lt;/P&gt;&lt;P&gt;ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lr_func = gr_alv-&amp;gt;get_functions( ).&lt;/P&gt;&lt;P&gt;lr_func-&amp;gt;set_all( 'X' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lr_events = gr_alv-&amp;gt;get_event( ).&lt;/P&gt;&lt;P&gt;CREATE OBJECT lr_handler.&lt;/P&gt;&lt;P&gt;SET HANDLER lr_handler-&amp;gt;on_user_command FOR lr_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gr_alv-&amp;gt;display( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.                    "show_alv&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;      CLASS lcl_event_handler 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;*&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;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: lr_grid         TYPE REF TO cl_gui_alv_grid,&lt;/P&gt;&lt;P&gt;lv_layout       TYPE lvc_s_layo,&lt;/P&gt;&lt;P&gt;lt_fieldcat     TYPE lvc_t_fcat,&lt;/P&gt;&lt;P&gt;lr_grid_events  TYPE REF TO lcl_event_handler,&lt;/P&gt;&lt;P&gt;lv_fieldname    TYPE lvc_fname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;ls_fieldcat&amp;gt; LIKE LINE OF lt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'PRGN_CHECK_SYSTEM_PRODUCTIVE'&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;client_is_productive = 1&lt;/P&gt;&lt;P&gt;OTHERS               = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF e_salv_function(7) EQ '%_EDIT_'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF e_salv_function NE '%_EDIT_ALL'.&lt;/P&gt;&lt;P&gt;lv_fieldname = e_salv_function+7.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CLEAR lv_fieldname.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_grid = lr_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD lr_grid-&amp;gt;get_frontend_layout&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;es_layout = lv_layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF lv_fieldname IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lr_grid-&amp;gt;get_backend_fieldcatalog(&lt;/P&gt;&lt;P&gt;IMPORTING et_fieldcatalog = lt_fieldcat ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE lt_fieldcat ASSIGNING &amp;lt;ls_fieldcat&amp;gt;&lt;/P&gt;&lt;P&gt;WITH KEY fieldname = lv_fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;lt;ls_fieldcat&amp;gt; IS NOT ASSIGNED.&lt;/P&gt;&lt;P&gt;MESSAGE w398(00)&lt;/P&gt;&lt;P&gt;WITH  'Fieldname'&lt;/P&gt;&lt;P&gt;lv_fieldname&lt;/P&gt;&lt;P&gt;'does not exist'.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF &amp;lt;ls_fieldcat&amp;gt;-edit = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_layout-no_toolbar = abap_true.&lt;/P&gt;&lt;P&gt;&amp;lt;ls_fieldcat&amp;gt;-edit = abap_false.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_layout-no_toolbar = abap_false.&lt;/P&gt;&lt;P&gt;&amp;lt;ls_fieldcat&amp;gt;-edit = abap_true.&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;lr_grid-&amp;gt;set_frontend_fieldcatalog(&lt;/P&gt;&lt;P&gt;EXPORTING it_fieldcatalog = lt_fieldcat ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF lv_layout-edit = abap_true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR lv_layout-edit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_layout-edit = abap_true.&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;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD lr_grid-&amp;gt;register_edit_event&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_event_id = cl_gui_alv_grid=&amp;gt;mc_evt_enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT lr_grid_events.&lt;/P&gt;&lt;P&gt;SET HANDLER lr_grid_events-&amp;gt;handle_data_changed FOR lr_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD lr_grid-&amp;gt;set_frontend_layout&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;is_layout = lv_layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD lr_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;ENDIF.&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;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Dec 2011 14:29:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-21T14:29:29Z</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>

