<?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: How to track changes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-track-changes/m-p/1444880#M211374</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI gowtham,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, u are right,&lt;/P&gt;&lt;P&gt;we have to right some abap code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CHANGE DOCUMENTS" in SAP Terminology&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 The same thing which u are asking&lt;/P&gt;&lt;P&gt;we had developed here. For Eg : Any change&lt;/P&gt;&lt;P&gt;in the material master will be detected&lt;/P&gt;&lt;P&gt;and a mail will be sent to the concerned&lt;/P&gt;&lt;P&gt;employee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THIS WILL ALSO DETECT WHICH FILEDS HAVE CHANGED.&lt;/P&gt;&lt;P&gt;IT CAN ALSO GIVE, The Old Value, And The New Value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This Mechanism is called CHANGE DOCUMENTS in &lt;/P&gt;&lt;P&gt;SAP Terminology&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. 2 Fuction Modules are Required.&lt;/P&gt;&lt;P&gt;(They will fetch necessary data from CDHDR,CDPOS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGEDOCUMENT_READ_HEADERS&lt;/P&gt;&lt;P&gt;CHANGEDOCUMENT_READ_POSITIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. The First FM gives list of all &lt;/P&gt;&lt;P&gt;records ( with change no) which have changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Loop at the above and the second FM will&lt;/P&gt;&lt;P&gt;provide the details (old-val, new-val) for&lt;/P&gt;&lt;P&gt;each record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. While using 1st Fm, i used docclass as 'MATERIAL'.&lt;/P&gt;&lt;P&gt;BCOS&lt;/P&gt;&lt;P&gt;the concept of change documents is applicable&lt;/P&gt;&lt;P&gt;to other type of documents also (depends upon&lt;/P&gt;&lt;P&gt;customization)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Jul 2006 05:14:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-12T05:14:50Z</dc:date>
    <item>
      <title>How to track changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-track-changes/m-p/1444879#M211373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;    I am a XI consultant. My query is regarding how to track the chages.I heard that CDHDR and CDPOS tables are used to store the information regarding the changes made to the objects/tables in SAP.My scenario is i have a table having few fields related to P.o and a flag indiacating Insert/Update/Delete, so upon the creation/upadate/deletion of a P.O(related to perticular WBS Element) i want the data to be  transfered into my table automatically. &lt;/P&gt;&lt;P&gt;   Is there any standard transaction available to do that....means i want to track all the P.Os under a perticular WBS element..&lt;/P&gt;&lt;P&gt;If not Do we have to write a Abap program and use CHANGEDOCUMENT_READ_HEADERS,CHANGEDOCUMENT_READ_POSITIONS functions to store the data into internal tables ?????&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;Gowtham K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2006 05:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-track-changes/m-p/1444879#M211373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-12T05:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to track changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-track-changes/m-p/1444880#M211374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI gowtham,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, u are right,&lt;/P&gt;&lt;P&gt;we have to right some abap code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CHANGE DOCUMENTS" in SAP Terminology&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 The same thing which u are asking&lt;/P&gt;&lt;P&gt;we had developed here. For Eg : Any change&lt;/P&gt;&lt;P&gt;in the material master will be detected&lt;/P&gt;&lt;P&gt;and a mail will be sent to the concerned&lt;/P&gt;&lt;P&gt;employee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THIS WILL ALSO DETECT WHICH FILEDS HAVE CHANGED.&lt;/P&gt;&lt;P&gt;IT CAN ALSO GIVE, The Old Value, And The New Value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This Mechanism is called CHANGE DOCUMENTS in &lt;/P&gt;&lt;P&gt;SAP Terminology&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. 2 Fuction Modules are Required.&lt;/P&gt;&lt;P&gt;(They will fetch necessary data from CDHDR,CDPOS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGEDOCUMENT_READ_HEADERS&lt;/P&gt;&lt;P&gt;CHANGEDOCUMENT_READ_POSITIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. The First FM gives list of all &lt;/P&gt;&lt;P&gt;records ( with change no) which have changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Loop at the above and the second FM will&lt;/P&gt;&lt;P&gt;provide the details (old-val, new-val) for&lt;/P&gt;&lt;P&gt;each record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. While using 1st Fm, i used docclass as 'MATERIAL'.&lt;/P&gt;&lt;P&gt;BCOS&lt;/P&gt;&lt;P&gt;the concept of change documents is applicable&lt;/P&gt;&lt;P&gt;to other type of documents also (depends upon&lt;/P&gt;&lt;P&gt;customization)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2006 05:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-track-changes/m-p/1444880#M211374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-12T05:14:50Z</dc:date>
    </item>
  </channel>
</rss>

