<?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: where are customizing data changes stored in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464264#M218810</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;  I checked the Standard code for storing the change log..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form ddntt_hist_get using tabname   like x030l-tabname&lt;/P&gt;&lt;P&gt;                          tmst_low  like x030l-crstamp&lt;/P&gt;&lt;P&gt;                          tmst_high like x030l-crstamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh ddntt_hist_tab. clear ddntt_hist_tab.&lt;/P&gt;&lt;P&gt;  exec sql performing collect_ddntt_hist.&lt;/P&gt;&lt;P&gt;    SELECT * INTO :DDNTT_HIST_TAB&lt;/P&gt;&lt;P&gt;             FROM DDNTT_HIST&lt;/P&gt;&lt;P&gt;             WHERE TABNAME     = :TABNAME&lt;/P&gt;&lt;P&gt;             AND   CRTIMESTMP &amp;gt;= :TMST_LOW&lt;/P&gt;&lt;P&gt;             AND   CRTIMESTMP &amp;lt;= :TMST_HIGH&lt;/P&gt;&lt;P&gt;  endexec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form collect_ddntt_hist.&lt;/P&gt;&lt;P&gt;  append ddntt_hist_tab.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the include LSDNTF01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please award the points if it helps..&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narendran Muthukumaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Aug 2006 04:45:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-25T04:45:18Z</dc:date>
    <item>
      <title>where are customizing data changes stored</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464261#M218807</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 need to get the details of the data in the transaction FTXP(Maintain Tax Code) before and after changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally all master data changes are recorded in tables CDHDR and CDPOS and could be retrieved using function module "CHANGEDOCUMENT_READ_WITHOUT_ED". But FTXP being a customizing transaction, is not reflected these tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me the table where I can see all customizing changes and any function module which can help retrieve them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CMV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 03:27:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464261#M218807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T03:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: where are customizing data changes stored</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464262#M218808</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;  CDHDR, CDPOS tables gets updated only if the checkbox Log data changes is checked. (Se11-&amp;gt;Technical settings)&lt;/P&gt;&lt;P&gt;  Otherwise they wont get reflected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Check whether entries are exisitng in &amp;lt;b&amp;gt;DBTABLOG&amp;lt;/b&amp;gt; table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 03:41:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464262#M218808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T03:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: where are customizing data changes stored</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464263#M218809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you Sailaja for that input. But in DBTABLOG only tells which all tables were affected by chnages in a paricular transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issue is like I want to retrieve the old and new values as in CDHDR and CDPOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody aware of this???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 04:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464263#M218809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T04:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: where are customizing data changes stored</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464264#M218810</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;  I checked the Standard code for storing the change log..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form ddntt_hist_get using tabname   like x030l-tabname&lt;/P&gt;&lt;P&gt;                          tmst_low  like x030l-crstamp&lt;/P&gt;&lt;P&gt;                          tmst_high like x030l-crstamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh ddntt_hist_tab. clear ddntt_hist_tab.&lt;/P&gt;&lt;P&gt;  exec sql performing collect_ddntt_hist.&lt;/P&gt;&lt;P&gt;    SELECT * INTO :DDNTT_HIST_TAB&lt;/P&gt;&lt;P&gt;             FROM DDNTT_HIST&lt;/P&gt;&lt;P&gt;             WHERE TABNAME     = :TABNAME&lt;/P&gt;&lt;P&gt;             AND   CRTIMESTMP &amp;gt;= :TMST_LOW&lt;/P&gt;&lt;P&gt;             AND   CRTIMESTMP &amp;lt;= :TMST_HIGH&lt;/P&gt;&lt;P&gt;  endexec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form collect_ddntt_hist.&lt;/P&gt;&lt;P&gt;  append ddntt_hist_tab.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the include LSDNTF01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please award the points if it helps..&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narendran Muthukumaran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 04:45:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-are-customizing-data-changes-stored/m-p/1464264#M218810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T04:45:18Z</dc:date>
    </item>
  </channel>
</rss>

