<?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: Enable audit trail for customized table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563760#M1431743</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already have that field to log last change by who and when. But the customer want to see exactly which field was changes and what is the changes. Any way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Feb 2010 10:00:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-10T10:00:23Z</dc:date>
    <item>
      <title>Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563755#M1431738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a customized table with 5 fields. We can to have audit trail / log to record all changes make to the table. &lt;/P&gt;&lt;P&gt;And from there, write a customize report to show who add / edit entry in the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possibe. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 09:44:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563755#M1431738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T09:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563756#M1431739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also make use table maintenance generator event s01 and 05.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want one custome report who have added entry then use sy-uname.&lt;/P&gt;&lt;P&gt;Chcek the total enries in the custome table.&lt;/P&gt;&lt;P&gt;define and internal table and sort it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take one variable and describe internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One doubt , are updating the table from that custom reprt?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 09:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563756#M1431739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T09:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563757#M1431740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the technical settings of the table, check the "Log Data Changes" checkbox. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see the data changes in the transaction SCU3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 09:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563757#M1431740</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-10T09:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563758#M1431741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jess,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have two ways to log your data changes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) You can switch on the logging option in the Z-table by going into Technical Settings -&amp;gt; Log Data Changes checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Another option is to create three additional columns in the custom table: createdby, date and time. Every time the table is updated, you can just pass these three parameters as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ztable-createdby = sy-uname.&lt;/P&gt;&lt;P&gt;ztable-date = sy-datum.&lt;/P&gt;&lt;P&gt;ztable-time = sy-uzeit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check which one is appropriate for you and implement accordingly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps! Do revert if you have any further queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Shailesh&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Always provide feedback for helpful answers&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 09:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563758#M1431741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T09:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563759#M1431742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks. The update is from a SAP add-on.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 09:58:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563759#M1431742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T09:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563760#M1431743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already have that field to log last change by who and when. But the customer want to see exactly which field was changes and what is the changes. Any way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 10:00:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563760#M1431743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T10:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563761#M1431744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jess,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check my previous post? Have you tried checking the "Log Data Changes" check box &amp;amp; analyzing the change log in SCU3 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 10:02:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563761#M1431744</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-10T10:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563762#M1431745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I tried, but when i check the SCU3, there isn't any log for the customized table. Any idea why? Or is there any place that i need to enable for the log?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 10:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563762#M1431745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T10:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563763#M1431746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you should check the param: &lt;STRONG&gt;rec/client&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see this SAP help documentation for details: [http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21eaf9446011d189700000e8322d00/content.htm|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21eaf9446011d189700000e8322d00/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link on how to change the parameter: [http://help.sap.com/saphelp_nw2004s/helpdata/EN/32/a479f0e083fc4386e66380e932497e/content.htm|http://help.sap.com/saphelp_nw2004s/helpdata/EN/32/a479f0e083fc4386e66380e932497e/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Feb 10, 2010 3:42 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 10:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563763#M1431746</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-10T10:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Enable audit trail for customized table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563764#M1431747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jess,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oh, in that case, it is essential that those three columns - username, date and time - are key fields. This way, every time the table is updated, a new entry will be created in the table. So when you generate a report, you can find out exactly what field was changed and by how much etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps! Do revert if you have any further queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Shailesh&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Always provide feedback for helpful answers&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 10:11:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-audit-trail-for-customized-table/m-p/6563764#M1431747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T10:11:01Z</dc:date>
    </item>
  </channel>
</rss>

