<?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 Why a program with hashed internal table cannot be debugged? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-a-program-with-hashed-internal-table-cannot-be-debugged/m-p/7461773#M1553985</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I have a test program where I have declared a hashed table and filled it using INSERT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;COLUMN1 TYPE I,&lt;/P&gt;&lt;P&gt;COLUMN2 TYPE I,&lt;/P&gt;&lt;P&gt;COLUMN3 TYPE I,&lt;/P&gt;&lt;P&gt;END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: x_hash type line,&lt;/P&gt;&lt;P&gt;      i_hash TYPE HASHED TABLE OF LINE WITH UNIQUE KEY COLUMN1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_hash-column1 = 1.&lt;/P&gt;&lt;P&gt;x_hash-column2 = 11.&lt;/P&gt;&lt;P&gt;x_hash-column3 = 22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert x_hash into table i_hash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_hash-column1 = 2.&lt;/P&gt;&lt;P&gt;x_hash-column2 = 11.&lt;/P&gt;&lt;P&gt;x_hash-column3 = 22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert x_hash into table i_hash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write 'done hash'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have put a session breakpoint at the last line (write 'done hash'.).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However when I run the program, ABAP debugger is not called. But if I use standard internal table or Sorted internal table then debugger is called. So why debugger is not called when hash internal table is used? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Gopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Nov 2010 08:58:48 GMT</pubDate>
    <dc:creator>gopalkrishna_baliga</dc:creator>
    <dc:date>2010-11-26T08:58:48Z</dc:date>
    <item>
      <title>Why a program with hashed internal table cannot be debugged?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-a-program-with-hashed-internal-table-cannot-be-debugged/m-p/7461773#M1553985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I have a test program where I have declared a hashed table and filled it using INSERT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TYPES: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;COLUMN1 TYPE I,&lt;/P&gt;&lt;P&gt;COLUMN2 TYPE I,&lt;/P&gt;&lt;P&gt;COLUMN3 TYPE I,&lt;/P&gt;&lt;P&gt;END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: x_hash type line,&lt;/P&gt;&lt;P&gt;      i_hash TYPE HASHED TABLE OF LINE WITH UNIQUE KEY COLUMN1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_hash-column1 = 1.&lt;/P&gt;&lt;P&gt;x_hash-column2 = 11.&lt;/P&gt;&lt;P&gt;x_hash-column3 = 22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert x_hash into table i_hash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_hash-column1 = 2.&lt;/P&gt;&lt;P&gt;x_hash-column2 = 11.&lt;/P&gt;&lt;P&gt;x_hash-column3 = 22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert x_hash into table i_hash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write 'done hash'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have put a session breakpoint at the last line (write 'done hash'.).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However when I run the program, ABAP debugger is not called. But if I use standard internal table or Sorted internal table then debugger is called. So why debugger is not called when hash internal table is used? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Gopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Nov 2010 08:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-a-program-with-hashed-internal-table-cannot-be-debugged/m-p/7461773#M1553985</guid>
      <dc:creator>gopalkrishna_baliga</dc:creator>
      <dc:date>2010-11-26T08:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Why a program with hashed internal table cannot be debugged?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-a-program-with-hashed-internal-table-cannot-be-debugged/m-p/7461774#M1553986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wrong question. The issue was not because of using hash table but program type that I gave. Program type I gave was system program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Nov 2010 09:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-a-program-with-hashed-internal-table-cannot-be-debugged/m-p/7461774#M1553986</guid>
      <dc:creator>gopalkrishna_baliga</dc:creator>
      <dc:date>2010-11-26T09:03:55Z</dc:date>
    </item>
  </channel>
</rss>

