<?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>Question Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED in Additional Q&amp;A</title>
    <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675153#M64165</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;here is a sample storage usage at termination time of the abap dump. &lt;/P&gt;&lt;P&gt;Roll area...................... 6178768 &lt;/P&gt;&lt;P&gt;Extended memory (EM)........... 2001260211 &lt;/P&gt;&lt;P&gt;Assigned memory (HEAP)......... 10096240 &lt;/P&gt;&lt;P&gt;Short area..................... 16079 &lt;/P&gt;&lt;P&gt;Paging area.................... 262144 &lt;/P&gt;&lt;P&gt;Maximum address space.......... "-1" &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi KeatSeong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the values from your ABAP dump, I can definitely say this is a BAD program. At the time of termination, Extended memory is fully utilized upto 2GB which is allowed per process as per ztta/roll_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please ask ABAPer to check the ABAP code where the program terminates .... many times if there is a nested query where first query results in internal table and that becomes source for another query , the issue is previous query generated a NULL internal table and that triggers a full table read of the next query on a huge table and that becomes this ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A simple, &lt;EM&gt;IF InternalTable not NULL&lt;/EM&gt;, condition may resolve this issue, if the symptoms I mentioned are correct in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Yatin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Mar 2010 01:44:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-25T01:44:51Z</dc:date>
    <item>
      <title>ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaq-p/6675143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recently we've been receiving a bunch of TSV_TNEW_PAGE_ALLOC_FAILED abap dumps. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dump will always mention "No storage space available for extending table "IT_XXXXX"." XXXXX are various numbers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a server memory issue, NOT a DB space issue. An internal table is a table that resides in server memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also i noticed in ST02, Free Space &amp;amp; Free Directory for NAMETAB (NTAB) Table definition is RED and 0.00. Could this be related to the abap dump???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to pinpoint which parameter to increase the value, I rounded it down to:-&lt;/P&gt;&lt;P&gt;abap/heap_area_total&lt;/P&gt;&lt;P&gt;abap/heap_area_dia&lt;/P&gt;&lt;P&gt;abap/heap_area_nondia ...&lt;/P&gt;&lt;P&gt;em/initial_size_MB&lt;/P&gt;&lt;P&gt;ztta/roll_extension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would this solve this problem???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 09:00:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaq-p/6675143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T09:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675144#M64156</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;PRE&gt;&lt;CODE&gt;&lt;P&gt;An internal table is a table that resides in server memory&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is correct but is limited to the parameters you have listed, as you do not not multiple users blowing your server memory away.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;I'm trying to pinpoint which parameter to increase the value, I rounded it down to:-&lt;/P&gt;&lt;P&gt;abap/heap_area_total&lt;/P&gt;&lt;P&gt;abap/heap_area_dia&lt;/P&gt;&lt;P&gt;abap/heap_area_nondia ...&lt;/P&gt;&lt;P&gt;em/initial_size_MB&lt;/P&gt;&lt;P&gt;ztta/roll_extension&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waht are your valuse for these..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and can you paste the full dump..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 10:43:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675144#M64156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T10:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675145#M64157</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;&amp;gt;This is a server memory issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my experience, 9 times out of 10, it is either a badly written program or an unappropriate (too big) variant used.&lt;/P&gt;&lt;P&gt;This kind of short dump is designed to protect your system from too much memory consumption.&lt;/P&gt;&lt;P&gt;It is much better to dump one program than to crash the whole system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't change the system paramters before checking the variant and the program. You are not supposed to load tens of millions lines in an internal table. You can check the number of lines in the short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Olivier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 12:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675145#M64157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T12:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675146#M64158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you let us know the exact situation when you are getting this dump and also the system details. In my experience this dump you see freaquently in BW system in production support after over a period of time, as the data grow's and accordingly user request for the data grows. In that case you need to do memory tuning. But also as Alivier recommonded its better to look for the provision where you can reduce the selection criterea or some time's there could be a problem with program that you are using then u have to reach out programmer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this memory demand is from SAP standard programs, then give the complete senario of the problem. Like what you are trying to run and the steps you are following for that. So that its easy to narrow down the problem and to find the cause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also if you decided to change the memory parameters, then dont forget to run the 'sappfpar' to check your profile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;N.Amarnath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 18:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675146#M64158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T18:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675147#M64159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the related parameters currently set in the system.&lt;/P&gt;&lt;P&gt;ztta/roll_area = 6500000 &lt;/P&gt;&lt;P&gt;ztta/roll_extension = 2000000000 &lt;/P&gt;&lt;P&gt;abap/heap_area_total = 2000000000 &lt;/P&gt;&lt;P&gt;abap/heap_area_dia = 10000000 &lt;/P&gt;&lt;P&gt;abap/heap_area_nondia = 1073741824 &lt;/P&gt;&lt;P&gt;em/initial_size_MB = 6144 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is a sample storage usage at termination time of the abap dump. &lt;/P&gt;&lt;P&gt;Roll area...................... 6178768   &lt;/P&gt;&lt;P&gt;Extended memory (EM)........... 2001260211 &lt;/P&gt;&lt;P&gt;Assigned memory (HEAP)......... 10096240  &lt;/P&gt;&lt;P&gt;Short area..................... 16079     &lt;/P&gt;&lt;P&gt;Paging area.................... 262144    &lt;/P&gt;&lt;P&gt;Maximum address space.......... "-1"      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see, the usage of the Extended memory (EM) of the batch jobs have exceeded the specified value of 2000000000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the reason why the batch jobs got terminated with error message "No storage space available for extending table "IT_XXXXXX"."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can't do much here as we're not allowed to increase the value of parameter ztta/roll_extension further.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 08:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675147#M64159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T08:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675148#M64160</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;&lt;/P&gt;&lt;P&gt;So I would say why is this program stuffing in 2GB data into an internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a SAP standard program or bespoke customer one?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question does this program do inserts  or update...if so, how often does the program commit to the DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675148#M64160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T09:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675149#M64161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Increase abap/shared_objects_size_MB to 100MB.This will solve the issue. Its inital size is 20MB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Mar 2010 09:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675149#M64161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-12T09:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675150#M64162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;Increase abap/shared_objects_size_MB to 100MB.This will solve the issue. Its inital size is 20MB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Text removed by moderator&lt;/SPAN&gt; Keep it civil please&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This parameter has nothing to do with the problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Dec 13, 2011 10:54 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Mar 2010 18:29:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675150#M64162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-15T18:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675151#M64163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you check your JOB work's fine or not? As mr.Olivier say usually is are badly writen code .... &lt;/P&gt;&lt;P&gt; About memory configuration .... ---&amp;gt;&amp;gt; You not say how much memory you have on your BOX, are DB on same host, any other application are used? Try to give as this information, or we need buy magic ball  ? Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2010 09:54:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675151#M64163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-16T09:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675152#M64164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my experience , 9 out of 10 times this dump has been seen due to some Z* (customer program) not being correctly written and hence not optimally utilizing the memory of the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below issue which you are facing; is this due to a standard SAP program or a Z* program. Please confirm this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, more often than not, the SAP parameter values would be fine.  You can get this checked again, though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i guess, The program should be tuned accordingly. &lt;/P&gt;&lt;P&gt;Because, Its difficult to understand why would this program consume 2 GB of memory ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hari Kishan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Mar 2010 19:15:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675152#M64164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-21T19:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675153#M64165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;here is a sample storage usage at termination time of the abap dump. &lt;/P&gt;&lt;P&gt;Roll area...................... 6178768 &lt;/P&gt;&lt;P&gt;Extended memory (EM)........... 2001260211 &lt;/P&gt;&lt;P&gt;Assigned memory (HEAP)......... 10096240 &lt;/P&gt;&lt;P&gt;Short area..................... 16079 &lt;/P&gt;&lt;P&gt;Paging area.................... 262144 &lt;/P&gt;&lt;P&gt;Maximum address space.......... "-1" &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi KeatSeong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the values from your ABAP dump, I can definitely say this is a BAD program. At the time of termination, Extended memory is fully utilized upto 2GB which is allowed per process as per ztta/roll_extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please ask ABAPer to check the ABAP code where the program terminates .... many times if there is a nested query where first query results in internal table and that becomes source for another query , the issue is previous query generated a NULL internal table and that triggers a full table read of the next query on a huge table and that becomes this ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A simple, &lt;EM&gt;IF InternalTable not NULL&lt;/EM&gt;, condition may resolve this issue, if the symptoms I mentioned are correct in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Yatin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 01:44:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675153#M64165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T01:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675154#M64166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;most possible the issue with abap program please  check abap program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or check paging memory in you server&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 10:58:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675154#M64166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-06T10:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675155#M64167</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;If this dump is about a background job, why it uses less heap and more of the EM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per your parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ztta/roll_extension = 2000000000 
abap/heap_area_total = 2000000000 
abap/heap_area_dia = 10000000 
abap/heap_area_nondia = 1073741824 
em/initial_size_MB = 6144&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your non_dia heap is set to 1GB, its only after using this 1GB would the background process look for Extended memory. Most probably this dump is not of a background process. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I see that your total extended memory is just 6GB how much memory does your server have? Make good use of the available server memory by setting up large chunks of EM, if you increase the initia_size_MB to say 8GB or 12GB you can increase ztta/roll_extension to accommdate those programs that are dumping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the first priority is to talk to developers on improving the code rather than increasing parameters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddhesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Sep 2010 14:04:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675155#M64167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-17T14:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675156#M64168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This seems to be problem in the Shared memory. please refer Note 1166259 - Problems with shared memory in marketing applications for the solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;D.Mukunthan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 07:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675156#M64168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-13T07:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675157#M64169</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>Tue, 13 Dec 2011 07:33:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675157#M64169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-13T07:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675158#M64170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    This memory related error gets  because its hitting upper limits of memory  for sinlgle user,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;Roll area...................... 6178768 &lt;/P&gt;&lt;P&gt;Extended memory (EM)........... 2001260211 &lt;/P&gt;&lt;P&gt;Assigned memory (HEAP)......... 10096240 &lt;/P&gt;&lt;P&gt;Short area..................... 16079 &lt;/P&gt;&lt;P&gt;Paging area.................... 262144 &lt;/P&gt;&lt;P&gt;Maximum address space.......... "-1"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       You need to change heap area dia to 2GB and abap heap area non dia to a high value depending on RAM and heap area &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;total also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 06:34:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675158#M64170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-20T06:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675159#M64171</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 try incresing the heap memory for Non-diag to 4 or 6 gb , roll_extension to 4 gb and em_global to 20% more to existing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The BTC takes the memory intially from roll   after that Heap memory if that exhausted it will go for roll_extension .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/34/d9c8b9c23c11d188b40000e83539c3/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/34/d9c8b9c23c11d188b40000e83539c3/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Subhash.G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2011 20:22:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675159#M64171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-21T20:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675160#M64172</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;Check this note useful  1322182 -&amp;gt;TSV_TNEW_PAGE_ALLOC_FAILED&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 06:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675160#M64172</guid>
      <dc:creator>former_member204080</dc:creator>
      <dc:date>2012-01-11T06:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED</title>
      <link>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675161#M64173</link>
      <description>&lt;P&gt;Hi Expert,&lt;/P&gt;&lt;P&gt;Can we do the changes using ABAP or we have to connect with our admin/BASIS to do it.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sombhu&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 13:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/additional-q-a/abap-dump-tsv-tnew-page-alloc-failed/qaa-p/6675161#M64173</guid>
      <dc:creator>sombhu_shaw</dc:creator>
      <dc:date>2022-01-21T13:50:27Z</dc:date>
    </item>
  </channel>
</rss>

