<?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: Editable OOALV database update in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633649#M1442298</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how get the data in final table i.e it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to capture the edited data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Feb 2010 06:41:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-16T06:41:19Z</dc:date>
    <item>
      <title>Editable OOALV database update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633647#M1442296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How the edited cell of ALV will updated in database table using standard FM or any other technique.&lt;/P&gt;&lt;P&gt;I searched the forum but not got satisfactary ans. please help.&lt;/P&gt;&lt;P&gt;I am using OOALV.&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 05:12:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633647#M1442296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T05:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Editable OOALV database update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633648#M1442297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the code like below.&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;      REFRESH it_fin_old.&lt;/P&gt;&lt;P&gt;      it_fin_old[] = it_final[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL METHOD grid1-&amp;gt;check_changed_data.&lt;/P&gt;&lt;P&gt;      CLEAR : wa_final,wa_fin_old .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use like above and compare the old int table and the changed one and update the table.The method check_changed_data will return you the changed data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 06:08:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633648#M1442297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T06:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Editable OOALV database update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633649#M1442298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how get the data in final table i.e it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to capture the edited data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 06:41:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633649#M1442298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T06:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Editable OOALV database update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633650#M1442299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are displaying it_final on to the ALV then after calling the method check_changed_data ,it_final will have the changed data.&lt;/P&gt;&lt;P&gt;Now you compare the it_final and it_final_old using READ statement by looping at it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 07:00:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633650#M1442299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T07:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Editable OOALV database update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633651#M1442300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,.&lt;/P&gt;&lt;P&gt;what i want is  the chaged data  .&lt;/P&gt;&lt;P&gt;data which is edited that i want  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how the data is populated it into it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below FM(check_changed_data) tell that data is changed only.&lt;/P&gt;&lt;P&gt;i want which field changed and whats is the changed value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD w_obj_alv_grid-&amp;gt;check_changed_data
*   IMPORTING
*     e_valid   =
*   CHANGING
*     c_refresh = 'X'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;     .&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 07:15:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633651#M1442300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T07:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Editable OOALV database update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633652#M1442301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using it_final to display on to ALV,then after the calling method check_changed_data your it_final will get refreshed &lt;/P&gt;&lt;P&gt;with the changed values. To find the changed values you may have to compare the the editable field values with old int table and it _final.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 07:49:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633652#M1442301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T07:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: Editable OOALV database update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633653#M1442302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 12:05:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/editable-ooalv-database-update/m-p/6633653#M1442302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T12:05:10Z</dc:date>
    </item>
  </channel>
</rss>

