<?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: Database table update in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007264#M78052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghavendra!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your requirement can be fulfilled with change documents. Have a look at documentation of transaction SCDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shortly:&lt;/P&gt;&lt;P&gt;- create your own change document object (SCDO)&lt;/P&gt;&lt;P&gt;- with generation you get ~4 includes, one FM&lt;/P&gt;&lt;P&gt;- put these includes in every program, which updates your table&lt;/P&gt;&lt;P&gt;- call FM with old value / new value parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now SAP will create change documents, so some functions are already available for display purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Sep 2005 14:29:05 GMT</pubDate>
    <dc:creator>christian_wohlfahrt</dc:creator>
    <dc:date>2005-09-19T14:29:05Z</dc:date>
    <item>
      <title>Database table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007261#M78049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a table say A, i have a lot of entries in it&amp;amp; has been used in several pgms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i hav to create a table B and if any row in table A is modified, B should contain the Old &amp;amp; new value of that row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the logic for copying the modified row is done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i want to schedule the program only when table A is accessed by any of the pgm's. is there any way to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2005 14:12:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007261#M78049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-19T14:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Database table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007262#M78050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need not create a new table B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just activate the Log Data Changes in SE11 in Technical Settins of the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the chnages are logged in table DBTABLOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Later you can see the changes in transaction SCU3.&lt;/P&gt;&lt;P&gt;Give the table name , date range and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2005 14:25:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007262#M78050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-19T14:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Database table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007263#M78051</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;you mean to say about change logs.. In this case select the check box in the data element - &amp;gt; further characteristics - &amp;gt; change document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then the changes will be captured and available in the cdpos table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2005 14:25:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007263#M78051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-19T14:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Database table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007264#M78052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghavendra!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your requirement can be fulfilled with change documents. Have a look at documentation of transaction SCDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shortly:&lt;/P&gt;&lt;P&gt;- create your own change document object (SCDO)&lt;/P&gt;&lt;P&gt;- with generation you get ~4 includes, one FM&lt;/P&gt;&lt;P&gt;- put these includes in every program, which updates your table&lt;/P&gt;&lt;P&gt;- call FM with old value / new value parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now SAP will create change documents, so some functions are already available for display purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2005 14:29:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-table-update/m-p/1007264#M78052</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-09-19T14:29:05Z</dc:date>
    </item>
  </channel>
</rss>

