<?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: Processing some records from internal table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317317#M1393791</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can increase the abap dump time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;leelakrishna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Nov 2009 10:14:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-04T10:14:28Z</dc:date>
    <item>
      <title>Processing some records from internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317316#M1393790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My internal table contains material in lakhs.After fetching the record from database table MARA,i process each material to find out its characteristics.As there are too much records it is taking time, resulting in time out error abap dump. If i want to process first 5000 material then remaining 5000 and so on...what logic should i apply?or can there be any alternative solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2009 10:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317316#M1393790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-04T10:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Processing some records from internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317317#M1393791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can increase the abap dump time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;leelakrishna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2009 10:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317317#M1393791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-04T10:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Processing some records from internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317318#M1393792</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;Please find my suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;gt;Have a parameter field in the selection screen for "NO OF records"...so while retrieving data from mara you can select upto the &amp;lt;No of records&amp;gt; specified in the selection screen.&lt;/P&gt;&lt;P&gt;2&amp;gt;Specify the materials in the selection screen to get lless records.&lt;/P&gt;&lt;P&gt;3&amp;gt;Run the report in background and  check the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2009 10:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317318#M1393792</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-11-04T10:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Processing some records from internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317319#M1393793</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;You can also check if the read statement has BInary Serach. &lt;/P&gt;&lt;P&gt;By Adding this it will improve performance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read statement will occupy lots of time to read the records.&lt;/P&gt;&lt;P&gt;Sort the Internal table with some key field and the use Binary Search for an internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT T_PRGEN by ATTR20A. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE T_V_TCAV201 INTO WA_V_TCAV201 WITH KEY ATTRV20 = WA_PRGEN-ATTR20A BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should fix the issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2009 10:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317319#M1393793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-04T10:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Processing some records from internal table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317320#M1393794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Nilam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think if you want to process the Materials in batches of 5000, you need to make use of PACKAGE SIZE concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search in SDN for further details, this type of req. has been discussed many a times before.&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, 04 Nov 2009 10:38:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-some-records-from-internal-table/m-p/6317320#M1393794</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-11-04T10:38:50Z</dc:date>
    </item>
  </channel>
</rss>

