<?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 Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139931#M114282</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Someone gave me a solution to this. See the cone below and I hope if anyone has this problem theis can help...&lt;/P&gt;&lt;P&gt;Include the DESCRIBE TABLE and the IF...ENDIF statements as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE ITAB LINES sy-index. &lt;/P&gt;&lt;P&gt;IF sy-index GT 0.                                     &lt;/P&gt;&lt;P&gt;   SELECT * FROM DBERCHZ INTO TABLE T_DBERCHZ&lt;/P&gt;&lt;P&gt;   FOR ALL ENTRIES IN ITAB&lt;/P&gt;&lt;P&gt;   WHERE BELNR = ITAB-BELNR.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Mar 2006 12:39:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-01T12:39:40Z</dc:date>
    <item>
      <title>STORAGE_PARAMETERS_WRONG_SET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139927#M114278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. I am running a program that very often brings up the following error. Even if I try limiting the table search to a few items I sometimes get the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current program had to be terminated because of an error when installing the R/3 system. The program had already requested XXXXXXXXXXX bytes from the operating system with 'malloc' when the operating system reported after a further memory request that there was no more memory space available. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any help out there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rapula&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 09:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139927#M114278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T09:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139928#M114279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are you using 'FOR ALL ENTRIES' with your program?.&lt;/P&gt;&lt;P&gt;It might makes the program require more memory allocation.&lt;/P&gt;&lt;P&gt;You can avoid using that key word if you are using it.&lt;/P&gt;&lt;P&gt;It might resolve your problem.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karun M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 10:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139928#M114279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T10:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139929#M114280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Karum. I do have the 'FOR ALL ENTRIES' in my program like this: &lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;SELECT * FROM DBERCHZ INTO TABLE T_DBERCHZ&lt;/P&gt;&lt;P&gt;         FOR ALL ENTRIES IN ITAB&lt;/P&gt;&lt;P&gt;         WHERE BELNR = ITAB-BELNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB WHERE BELEGDAT &amp;gt; '20011204'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;I disabled the 'FOR ALL ENTRIES' line because with the LOOP statement it actually looks like a repetition. Is it a repetition?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just tested with the disabled line and it seems to work. I will do some further tests and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Rapula&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 12:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139929#M114280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T12:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139930#M114281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops. I tried taking off the line with the 'FOR ALL ENTRIES' but - new problem, the program then does not pick up anything from the table, even the information that I know exists, it behaves as if the table is empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HELP TO SOLVE BOTH PROBLEMS PLEASE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2006 13:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139930#M114281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-16T13:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139931#M114282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Someone gave me a solution to this. See the cone below and I hope if anyone has this problem theis can help...&lt;/P&gt;&lt;P&gt;Include the DESCRIBE TABLE and the IF...ENDIF statements as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE ITAB LINES sy-index. &lt;/P&gt;&lt;P&gt;IF sy-index GT 0.                                     &lt;/P&gt;&lt;P&gt;   SELECT * FROM DBERCHZ INTO TABLE T_DBERCHZ&lt;/P&gt;&lt;P&gt;   FOR ALL ENTRIES IN ITAB&lt;/P&gt;&lt;P&gt;   WHERE BELNR = ITAB-BELNR.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 12:39:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139931#M114282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T12:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139932#M114283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Better :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF NOT ITAB[] IS INITIAL. 
SELECT * FROM DBERCHZ INTO TABLE T_DBERCHZ
FOR ALL ENTRIES IN ITAB
WHERE BELNR = ITAB-BELNR.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's better than overwritting SAP system field &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erwan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Erwan LE BRUN  --&amp;gt; ITAB ( not T_DBERCHZ before the 'Initial' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 12:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139932#M114283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T12:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: STORAGE_PARAMETERS_WRONG_SET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139933#M114284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Erwan, better indeed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 13:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-parameters-wrong-set/m-p/1139933#M114284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T13:13:26Z</dc:date>
    </item>
  </channel>
</rss>

