<?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: ALV Input enabled in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611940#M870178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
    call function 'REUSE_ALV_GRID_DISPLAY'
      exporting
        it_fieldcat                 = i_fieldcat[]
        is_layout                   = pt_grplayout2
        i_callback_program          = 'YATT0007'
        i_callback_html_top_of_page = p_header
        i_callback_user_command     = f_user_command1
        it_events                   = i_events[]
      tables
        t_outtab                    = i_yscchdr.
  else.
    message i012(yscc).
  endif.
endform.                                 " F_alv_edit_oruser
*
*&amp;amp;---------------------------------------------------------------------*
* Form  f_user_command1                                                *
*&amp;amp;---------------------------------------------------------------------*
* This form will handle the user command from fm REUSE                 *
*----------------------------------------------------------------------*
form f_user_command1 using p_ucomm type sy-ucomm
                     rs_selfield type  slis_selfield.

  data p_ref1 type ref to cl_gui_alv_grid.
  call function 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    importing
      e_grid = p_ref1.
  call method p_ref1-&amp;gt;check_changed_data.
  case p_ucomm.
    when '&amp;amp;DATA_SAVE'.
      "HERE YOUR OUTPUT TABLE HAVE UPDATED VALUES


  endcase.
  rs_selfield-refresh = c_x.             " Grid refresh

endform.                                 " F_user_command1
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Mar 2008 20:27:21 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2008-03-18T20:27:21Z</dc:date>
    <item>
      <title>ALV Input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611937#M870175</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;&lt;/P&gt;&lt;P&gt;i have a report which displays data in ALV grid and some columns are input enabled where user supplies additional data once after the list displays.&lt;/P&gt;&lt;P&gt;After user input, i have to read those selected lines from the alv grid and i have to do the subsequent process.&lt;/P&gt;&lt;P&gt;here i am able to read the selected lines but i am not getting the user input values. i am getting empty values..&lt;/P&gt;&lt;P&gt;how can i get the user input values form the ALV Grid...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 20:04:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611937#M870175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T20:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611938#M870176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are u using fm or OO for ALV?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 20:12:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611938#M870176</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-03-18T20:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611939#M870177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using ALV Function modules&lt;/P&gt;&lt;P&gt;how can i read values updated by user on the screen for the input enabled field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 20:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611939#M870177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T20:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611940#M870178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
    call function 'REUSE_ALV_GRID_DISPLAY'
      exporting
        it_fieldcat                 = i_fieldcat[]
        is_layout                   = pt_grplayout2
        i_callback_program          = 'YATT0007'
        i_callback_html_top_of_page = p_header
        i_callback_user_command     = f_user_command1
        it_events                   = i_events[]
      tables
        t_outtab                    = i_yscchdr.
  else.
    message i012(yscc).
  endif.
endform.                                 " F_alv_edit_oruser
*
*&amp;amp;---------------------------------------------------------------------*
* Form  f_user_command1                                                *
*&amp;amp;---------------------------------------------------------------------*
* This form will handle the user command from fm REUSE                 *
*----------------------------------------------------------------------*
form f_user_command1 using p_ucomm type sy-ucomm
                     rs_selfield type  slis_selfield.

  data p_ref1 type ref to cl_gui_alv_grid.
  call function 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    importing
      e_grid = p_ref1.
  call method p_ref1-&amp;gt;check_changed_data.
  case p_ucomm.
    when '&amp;amp;DATA_SAVE'.
      "HERE YOUR OUTPUT TABLE HAVE UPDATED VALUES


  endcase.
  rs_selfield-refresh = c_x.             " Grid refresh

endform.                                 " F_user_command1
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 20:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611940#M870178</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-03-18T20:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Input enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611941#M870179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent.&lt;/P&gt;&lt;P&gt;i gave full marks to u.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 20:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-input-enabled/m-p/3611941#M870179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T20:39:13Z</dc:date>
    </item>
  </channel>
</rss>

