<?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: ABAP check_changed_data do not trigger after updating by code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597025#M24314</link>
    <description>&lt;P&gt;Uwe, I am updating the internal table of ALV. I have to make the update of DB manual. But how can I distinguish the manual changes from the programmatiacally changes? If the user change the field1 and the program the field2 with the SAVE the CHECK_CHANGED_DATA will save the Field1. How can I check which fields are manually?&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jun 2018 12:59:50 GMT</pubDate>
    <dc:creator>ekekakos</dc:creator>
    <dc:date>2018-06-14T12:59:50Z</dc:date>
    <item>
      <title>ABAP check_changed_data do not trigger after updating by code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597021#M24310</link>
      <description>&lt;P&gt;I have created an OO ALV that displays some data to the user. When they press a button some filds of some records are fullfilled automatically and these cells are editable in order to be corrected by the user if needed.&lt;/P&gt;
  &lt;P&gt;My problem is that when the user just press 'SAVE' without change sth by accepting what the system put the &lt;STRONG&gt;check_changed_data&lt;/STRONG&gt; is not triggered while when the user change sth in a cell the &lt;STRONG&gt;check_changed_data&lt;/STRONG&gt; is triggered.&lt;BR /&gt;Can you tell me what am I missing?&lt;/P&gt;
  &lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 06:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597021#M24310</guid>
      <dc:creator>ekekakos</dc:creator>
      <dc:date>2018-06-14T06:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP check_changed_data do not trigger after updating by code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597022#M24311</link>
      <description>&lt;P&gt;"&lt;STRONG&gt;check_changed_data"&lt;/STRONG&gt; you can read as "Check the changed data" -&amp;gt; so nothing has to be checked if nothing has changed. The right behaviour in my opinion. Or did I misreading your question?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 09:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597022#M24311</guid>
      <dc:creator>UweFetzer_se38</dc:creator>
      <dc:date>2018-06-14T09:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP check_changed_data do not trigger after updating by code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597023#M24312</link>
      <description>&lt;P&gt;Uwe, when the user select some rows in the ALV (which is read-only) and press EDIT then the program during the change from read-only to read-write, it fullfil some fields. If the user press the SAVE it will not update the fields which fullfilled from the program. If the user make some changes and press SAVE it will trigger the &lt;STRONG&gt;check_changed_data &lt;/STRONG&gt;and the manual changes will be updated while the changes from program will not be updated.&lt;/P&gt;
  &lt;P&gt;Is there any way to trigger the CHECK_CHANGED_DATA when the program fullfill or change some fields?&lt;/P&gt;
  &lt;P&gt;I read somewhere that only the manuals changes will trigger the CHECK_CHANGED_DATA.&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 10:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597023#M24312</guid>
      <dc:creator>ekekakos</dc:creator>
      <dc:date>2018-06-14T10:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP check_changed_data do not trigger after updating by code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597024#M24313</link>
      <description>&lt;P&gt;True, only manual changes will trigger the event (makes sense). The changes made by the program should be okay, no need to be checked again. Else there would be errors in the program. Why do you want that the event is triggert?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 11:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597024#M24313</guid>
      <dc:creator>UweFetzer_se38</dc:creator>
      <dc:date>2018-06-14T11:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP check_changed_data do not trigger after updating by code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597025#M24314</link>
      <description>&lt;P&gt;Uwe, I am updating the internal table of ALV. I have to make the update of DB manual. But how can I distinguish the manual changes from the programmatiacally changes? If the user change the field1 and the program the field2 with the SAVE the CHECK_CHANGED_DATA will save the Field1. How can I check which fields are manually?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 12:59:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597025#M24314</guid>
      <dc:creator>ekekakos</dc:creator>
      <dc:date>2018-06-14T12:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP check_changed_data do not trigger after updating by code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597026#M24315</link>
      <description>&lt;P&gt;I don't realy understand your problem. In check_changed_data event you check, whether the user has entered &lt;STRONG&gt;valid &lt;/STRONG&gt;data. If the program has entered data, you don't have to check this data because this should already be valid.&lt;/P&gt;
  &lt;P&gt;If you simply want to know, if the program or the user has changed/entered data in the internal table, you may copy the table before you show the ALV and on "save" you can compare the current data with the original content.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 14:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-check-changed-data-do-not-trigger-after-updating-by-code/m-p/597026#M24315</guid>
      <dc:creator>UweFetzer_se38</dc:creator>
      <dc:date>2018-06-14T14:41:33Z</dc:date>
    </item>
  </channel>
</rss>

