<?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: STORAGE_PARAMETERS_WRONG_SET in ZPROGRAMM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240721#M1719720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use OPEN Cursor and Fetch Cursor and Close cursor concept.&lt;/P&gt;&lt;P&gt;though you are using the package size which is good. you are pass all the data to the Function Module I_TAB. where in this process cannot hold that memory. you can check that in the Application server process. after some time it will go to dump saying insufficient memory.&lt;/P&gt;&lt;P&gt;So how does the Open Cursor concept workds. it works like this in your case.&lt;/P&gt;&lt;P&gt;When you say Fetch cursor every time you process per cursor. so you dont get any dumps.&lt;/P&gt;&lt;P&gt;search for the Cursor concept. hope this&amp;nbsp; helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Dec 2012 11:45:28 GMT</pubDate>
    <dc:creator>Venkat_Sesha</dc:creator>
    <dc:date>2012-12-21T11:45:28Z</dc:date>
    <item>
      <title>STORAGE_PARAMETERS_WRONG_SET in ZPROGRAMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240719#M1719718</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;I have a program which extract all data of table MAKT then use &lt;SPAN class="L0S52"&gt;CALL &lt;SPAN class="L0S52"&gt;FUNCTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'SAP_CONVERT_TO_TEX_FORMAT'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S33"&gt;My code is:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S33"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S33"&gt;select * from makt into table i_tab &lt;/SPAN&gt;&lt;/SPAN&gt;PACKAGE &lt;SPAN class="L0S52"&gt;SIZE &lt;SPAN class="L0S32"&gt;50000&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;CALL &lt;SPAN class="L0S52"&gt;FUNCTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'SAP_CONVERT_TO_TEX_FORMAT'&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXPORTING&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i_field_seperator&amp;nbsp;&amp;nbsp;&amp;nbsp; = p_sep&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TABLES&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i_tab_sap_data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S33"&gt;i_tab&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S52"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CHANGING&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i_tab_converted_data = it_buffer&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;EXCEPTIONS&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conversion_failed&amp;nbsp;&amp;nbsp;&amp;nbsp; = &lt;SPAN class="L0S32"&gt;1&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;OTHERS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;= &lt;SPAN class="L0S32"&gt;2.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;sy-subrc &lt;SPAN class="L0S52"&gt;EQ &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;0.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;APPEND &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINES &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;it_buffer &lt;SPAN class="L0S52"&gt;TO i&lt;/SPAN&gt;t_record.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLEAR: it_buffer, it_buffer[],i_tab, i_tab[].&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FREE &lt;/SPAN&gt;:&amp;nbsp; i_tab,gt_buffer.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dump during the execution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;INCLUDE INCL_INSTALLATION_ERROR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Causes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current program had to be terminated because of an&lt;/P&gt;&lt;P&gt;error when installing the R/3 System.&lt;/P&gt;&lt;P&gt;The program had already requested 300672048 bytes from the operating&lt;/P&gt;&lt;P&gt;system with 'malloc' when the operating system reported after a&lt;/P&gt;&lt;P&gt;further memory request that there was no more memory space&lt;/P&gt;&lt;P&gt;available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solutions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make a note of the actions and input which caused the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To resolve the problem, contact your SAP system administrator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use transaction ST22 (ABAP Dump Analysis) to view and administer&lt;/P&gt;&lt;P&gt;termination messages, especially those beyond their normal deletion&lt;/P&gt;&lt;P&gt;date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set the system profile parameters&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;to a maximum of 300672048. Then reduce the value by 10.000.000 to be on the&lt;/P&gt;&lt;P&gt;safe side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then restart the SAP System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 10:28:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240719#M1719718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-12-21T10:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET in ZPROGRAMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240720#M1719719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dump as you have said is due to insufficient memory on application server while executing program.&lt;/P&gt;&lt;P&gt;Review below block of statements in dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;EM&gt;The program had already requested 300672048 bytes from the operating&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;EM&gt;system with 'malloc' when the operating system reported after a&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;EM&gt;further memory request that there was no more memory space&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;EM&gt;available.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus, Try to execute program after some time or consult to your basis consultant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 11:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240720#M1719719</guid>
      <dc:creator>ujjaval-bhalala</dc:creator>
      <dc:date>2012-12-21T11:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET in ZPROGRAMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240721#M1719720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use OPEN Cursor and Fetch Cursor and Close cursor concept.&lt;/P&gt;&lt;P&gt;though you are using the package size which is good. you are pass all the data to the Function Module I_TAB. where in this process cannot hold that memory. you can check that in the Application server process. after some time it will go to dump saying insufficient memory.&lt;/P&gt;&lt;P&gt;So how does the Open Cursor concept workds. it works like this in your case.&lt;/P&gt;&lt;P&gt;When you say Fetch cursor every time you process per cursor. so you dont get any dumps.&lt;/P&gt;&lt;P&gt;search for the Cursor concept. hope this&amp;nbsp; helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 11:45:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240721#M1719720</guid>
      <dc:creator>Venkat_Sesha</dc:creator>
      <dc:date>2012-12-21T11:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET in ZPROGRAMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240722#M1719721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for yours replies but i have the same dump with cursor.&lt;/P&gt;&lt;P&gt;Any others ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2012 09:44:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240722#M1719721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-12-27T09:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET in ZPROGRAMM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240723#M1719722</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;There are two options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Contact the basis guy to get the memory sizse increased&lt;/P&gt;&lt;P&gt;2) Restrict your data by putting a where clause in your select statement on MAKT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&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;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2012 09:50:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set-in-zprogramm/m-p/9240723#M1719722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-12-27T09:50:02Z</dc:date>
    </item>
  </channel>
</rss>

