<?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: CHECK_CHANGED_DATA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307203#M1392091</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;What ever the data which are been modified or changed by the user all the data will be appeared in the check_change_data.&lt;/P&gt;&lt;P&gt;so when ever the user interacted with the screen records for action then this will be come in to picture.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Nov 2009 08:13:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-10T08:13:59Z</dc:date>
    <item>
      <title>CHECK_CHANGED_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307201#M1392089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats the role of method CHECK_CHANGED_DATA  here...why should i use it ...cant i update the table w/o using it ?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE ucomm.
WHEN '&amp;amp;UPT'.

CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
IMPORTING
e_grid = lv_ref1.

CALL METHOD lv_ref1-&amp;gt;check_changed_data.

      REFRESH it_upt.

      LOOP AT itab  WHERE chk = 'X'.

        IF itab-chk = 'X'.

        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
            EXPORTING
              input  = itab-vbeln
            IMPORTING
              output = temp_vbeln.

          it_upt-vbeln = temp_vbeln.
          it_upt-netwr = itab-netwr.
          APPEND it_upt .

        ENDIF.

        PERFORM update.

      ENDLOOP.endcase&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 07:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307201#M1392089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-10T07:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK_CHANGED_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307202#M1392090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IN THE ABOVE PROGRAM I AM UPDATING THE TABLE VIA ALV REPORT....THE USER WILL SELECT SOME ROWS AND UPDATE IT ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 08:08:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307202#M1392090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-10T08:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK_CHANGED_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307203#M1392091</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;What ever the data which are been modified or changed by the user all the data will be appeared in the check_change_data.&lt;/P&gt;&lt;P&gt;so when ever the user interacted with the screen records for action then this will be come in to picture.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 08:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307203#M1392091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-10T08:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK_CHANGED_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307204#M1392092</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;Whenever any data is modified in the ALV, it will be captured by the Check_changed_data. So in order to update the database table with the updated values, we need to use this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 08:20:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307204#M1392092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-10T08:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK_CHANGED_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307205#M1392093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Raghunandan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should not avoid using it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because it says whether the data in your editable ALV Grid/List/other has been changed or not..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you ignore it and try to update all the records in database table/internal table then it will require more memory and work processes as a result it may take long time too...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's why it's advisable to check whether any changes happend.. if yes then only change the internal table of Database table or do further processing for those records only which have been modified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you have to transfer the changes to the internal table that's why..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing is to do some &lt;STRONG&gt;validation&lt;/STRONG&gt; for the data which has been chagned in ALV befor updating it to Database tables or before doing any further processing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 09:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307205#M1392093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-10T09:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: CHECK_CHANGED_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307206#M1392094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANK YOU&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 10:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-changed-data/m-p/6307206#M1392094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-10T10:36:51Z</dc:date>
    </item>
  </channel>
</rss>

