<?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: Maximum record length in internal table? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/maximum-record-length-in-internal-table/m-p/10408593#M1843290</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Manish,&lt;/P&gt;&lt;P&gt;False alarm!&amp;nbsp; While, technically, you didn't answer my question, your request for code ended up helping me answer my own question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To provide you with some code I wrote a simple test program using the record layout referred to above, with a DO loop to put some records into the internal table, followed by a LOOP AT, with accompanying WRITE statements to display the contents of the internal table and demonstrate that the last two fields weren't being stored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I ran the test program, the last two fields were being displayed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It was at that point, when stepping through the debugger that I noticed the scroll arrows above the last column of my internal table that allowed me to scroll to the right and see my final two fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apparently, because of the large number of fields in my internal table I had reached the default display length of the debugger.&amp;nbsp; While I was obviously aware of the scroll bar found at the bottom of the display, I had never worked with an internal table of that width in the past and hadn't even noticed the scroll arrows above the last column before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for taking the time to respond helping me get to the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2014 12:40:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-07-18T12:40:37Z</dc:date>
    <item>
      <title>Maximum record length in internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maximum-record-length-in-internal-table/m-p/10408591#M1843288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Is there a maximum record length in an internal table?&amp;nbsp; Please note:&amp;nbsp; My question is NOT related to table space.&amp;nbsp; I'm referring only to the length of an individual record (A.K.A. row length).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using a work area to insert data into an internal table.&amp;nbsp; Both the work area and internal table are defined by the same structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure has a total length of 672 bytes.&amp;nbsp; For the sake of this discussion I'll point out that at the end of the structure, bytes 669, 670, 671, and 672 are four separate fields of 1 character each.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When viewing the work area record in the debugger I'm seeing all the fields and all the values.&amp;nbsp; When viewing the internal table in the debugger after a record is inserted, the internal table ends with the field defined at Byte 670.&amp;nbsp; The internal table does not include the two fields defined at Bytes 671 and 672.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I to assume from the above explanation that the length of a record ( A.K.A. row) in an internal table cannot exceed 670 bytes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2014 16:35:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maximum-record-length-in-internal-table/m-p/10408591#M1843288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-17T16:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum record length in internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maximum-record-length-in-internal-table/m-p/10408592#M1843289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we have a screenshot and some ready to paste code so that we can reproduce this on our systems?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 06:54:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maximum-record-length-in-internal-table/m-p/10408592#M1843289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-18T06:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum record length in internal table?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maximum-record-length-in-internal-table/m-p/10408593#M1843290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Manish,&lt;/P&gt;&lt;P&gt;False alarm!&amp;nbsp; While, technically, you didn't answer my question, your request for code ended up helping me answer my own question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To provide you with some code I wrote a simple test program using the record layout referred to above, with a DO loop to put some records into the internal table, followed by a LOOP AT, with accompanying WRITE statements to display the contents of the internal table and demonstrate that the last two fields weren't being stored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I ran the test program, the last two fields were being displayed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It was at that point, when stepping through the debugger that I noticed the scroll arrows above the last column of my internal table that allowed me to scroll to the right and see my final two fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apparently, because of the large number of fields in my internal table I had reached the default display length of the debugger.&amp;nbsp; While I was obviously aware of the scroll bar found at the bottom of the display, I had never worked with an internal table of that width in the past and hadn't even noticed the scroll arrows above the last column before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for taking the time to respond helping me get to the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 12:40:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maximum-record-length-in-internal-table/m-p/10408593#M1843290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-18T12:40:37Z</dc:date>
    </item>
  </channel>
</rss>

