<?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: Retrieve data from editable ALV without OO in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/retrieve-data-from-editable-alv-without-oo/m-p/4983202#M1161042</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked great, thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jan 2009 10:06:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-12T10:06:45Z</dc:date>
    <item>
      <title>Retrieve data from editable ALV without OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retrieve-data-from-editable-alv-without-oo/m-p/4983200#M1161040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. I am using REUSE_ALV_GRID_DISPLAY and setting the EDIT flag so that the user can change data in the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get the users data out of the ALV without using OO? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't just need the changed data, I know you need OO for that, I want to get all the data in every field and row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought the internal table I passed into the function module would be updated with the users data and I could get to it from user command but the data is the original data, not the edited data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There must be a way, if there is not, why does the ALV have an edit flag? If you can not get the data out there is no point in making it editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be very much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dave.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2009 09:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retrieve-data-from-editable-alv-without-oo/m-p/4983200#M1161040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-10T09:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieve data from editable ALV without OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retrieve-data-from-editable-alv-without-oo/m-p/4983201#M1161041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the call back user command write the following and it works for REUSE_ALV_GRID_DISPLAY&lt;/P&gt;&lt;P&gt;  data : ref1 type ref to cl_gui_alv_grid.&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 = ref1.&lt;/P&gt;&lt;P&gt;  call method ref1-&amp;gt;check_changed_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When 'UPDATE'.&lt;/P&gt;&lt;P&gt;  data : ref1 type ref to cl_gui_alv_grid.&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 = ref1.&lt;/P&gt;&lt;P&gt;  call method ref1-&amp;gt;check_changed_data.&lt;/P&gt;&lt;P&gt;*---&amp;gt; check the internal table here..it will have the changed data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jan 2009 10:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retrieve-data-from-editable-alv-without-oo/m-p/4983201#M1161041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-10T10:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieve data from editable ALV without OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/retrieve-data-from-editable-alv-without-oo/m-p/4983202#M1161042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked great, thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 10:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/retrieve-data-from-editable-alv-without-oo/m-p/4983202#M1161042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T10:06:45Z</dc:date>
    </item>
  </channel>
</rss>

