<?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 New debugger - DIFF Tool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369159#M1039670</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm just trying out the DIFF tool in the new debugger for the first time. I've set up a small piece of code with deliberate differences between 2 internal tables. It works ok except I've noticed the DIFF tool has not picked up on a difference in content between 2 of the fields in the internal tables. I've pasted in the code i'm using below. VAR3 has different content between the 2 internal tables but this is not picked up when I compare them. If I compare s_t1-var3 and s_t2-var3, however, it does show me the difference as with the comment 'the elements have different contents'. Am I doing somethig wrong here or is this a bug ? Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of t1,&lt;/P&gt;&lt;P&gt;  var1(10),&lt;/P&gt;&lt;P&gt;  var2(20),&lt;/P&gt;&lt;P&gt;  var3 type p decimals 2,&lt;/P&gt;&lt;P&gt;end of t1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  begin of t2,&lt;/P&gt;&lt;P&gt;  var1(15),                "diff length&lt;/P&gt;&lt;P&gt;  var2(20) type n,         "diff type&lt;/P&gt;&lt;P&gt;  var3 type p decimals 2,  "diff content&lt;/P&gt;&lt;P&gt;end of t2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_t1 type table of t1,&lt;/P&gt;&lt;P&gt;      s_t1 type t1,&lt;/P&gt;&lt;P&gt;      t_t2 type table of t2,&lt;/P&gt;&lt;P&gt;      s_t2 type t2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  s_t1-var1 = 'test'.&lt;/P&gt;&lt;P&gt;  s_t2-var1 = 'test'.&lt;/P&gt;&lt;P&gt;  s_t1-var2 = '123'.&lt;/P&gt;&lt;P&gt;  s_t2-var2 = '123'.&lt;/P&gt;&lt;P&gt;  s_t1-var3 = 22.&lt;/P&gt;&lt;P&gt;  s_t2-var3 = 23.&lt;/P&gt;&lt;P&gt;  append s_t1 to t_t1.&lt;/P&gt;&lt;P&gt;  append s_t2 to t_t2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Aug 2008 10:04:18 GMT</pubDate>
    <dc:creator>former_member186444</dc:creator>
    <dc:date>2008-08-28T10:04:18Z</dc:date>
    <item>
      <title>New debugger - DIFF Tool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369159#M1039670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm just trying out the DIFF tool in the new debugger for the first time. I've set up a small piece of code with deliberate differences between 2 internal tables. It works ok except I've noticed the DIFF tool has not picked up on a difference in content between 2 of the fields in the internal tables. I've pasted in the code i'm using below. VAR3 has different content between the 2 internal tables but this is not picked up when I compare them. If I compare s_t1-var3 and s_t2-var3, however, it does show me the difference as with the comment 'the elements have different contents'. Am I doing somethig wrong here or is this a bug ? Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of t1,&lt;/P&gt;&lt;P&gt;  var1(10),&lt;/P&gt;&lt;P&gt;  var2(20),&lt;/P&gt;&lt;P&gt;  var3 type p decimals 2,&lt;/P&gt;&lt;P&gt;end of t1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  begin of t2,&lt;/P&gt;&lt;P&gt;  var1(15),                "diff length&lt;/P&gt;&lt;P&gt;  var2(20) type n,         "diff type&lt;/P&gt;&lt;P&gt;  var3 type p decimals 2,  "diff content&lt;/P&gt;&lt;P&gt;end of t2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_t1 type table of t1,&lt;/P&gt;&lt;P&gt;      s_t1 type t1,&lt;/P&gt;&lt;P&gt;      t_t2 type table of t2,&lt;/P&gt;&lt;P&gt;      s_t2 type t2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  s_t1-var1 = 'test'.&lt;/P&gt;&lt;P&gt;  s_t2-var1 = 'test'.&lt;/P&gt;&lt;P&gt;  s_t1-var2 = '123'.&lt;/P&gt;&lt;P&gt;  s_t2-var2 = '123'.&lt;/P&gt;&lt;P&gt;  s_t1-var3 = 22.&lt;/P&gt;&lt;P&gt;  s_t2-var3 = 23.&lt;/P&gt;&lt;P&gt;  append s_t1 to t_t1.&lt;/P&gt;&lt;P&gt;  append s_t2 to t_t2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 10:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369159#M1039670</guid>
      <dc:creator>former_member186444</dc:creator>
      <dc:date>2008-08-28T10:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: New debugger - DIFF Tool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369160#M1039671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anyone ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 14:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369160#M1039671</guid>
      <dc:creator>former_member186444</dc:creator>
      <dc:date>2008-08-28T14:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: New debugger - DIFF Tool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369161#M1039672</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;For me it sais, the tables cannot be compared, because they have different types.&lt;/P&gt;&lt;P&gt;The diff is working only if the tables have exactly the same structure.&lt;/P&gt;&lt;P&gt;(I just tryed it out).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2008 14:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369161#M1039672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-28T14:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: New debugger - DIFF Tool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369162#M1039673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 14:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/new-debugger-diff-tool/m-p/4369162#M1039673</guid>
      <dc:creator>former_member189009</dc:creator>
      <dc:date>2014-10-30T14:35:57Z</dc:date>
    </item>
  </channel>
</rss>

