<?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: problem with short dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827694#M352998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Looks like you are trying to execute a standard SAP program with selection screen.&lt;/P&gt;&lt;P&gt;But there cannot be a parameter field p_test in that program. Please check the code in the program and note down the field names and pass the values accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jan 2007 05:25:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-29T05:25:23Z</dc:date>
    <item>
      <title>problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827689#M352993</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;can any body tell me what could be the reason for short dump for the following piece of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZRRBILL message-id zmsg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab type table of abaplist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_vbeln for vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RVPKMASS96&lt;/P&gt;&lt;P&gt;EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;WITH dd_vbeln IN s_vbeln&lt;/P&gt;&lt;P&gt;*WITH dd_vkorg = '0001'&lt;/P&gt;&lt;P&gt;*WITH dd_ernam = 'USRBAO'&lt;/P&gt;&lt;P&gt;*WITH dd_erdat = '20070201'&lt;/P&gt;&lt;P&gt;WITH p_test = 'X'&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    LISTOBJECT       = itab&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NOT_FOUND        = 1&lt;/P&gt;&lt;P&gt;   OTHERS           = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;message e000 with 'error in list memory'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is giving error in long text like problem with messge X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know what modifications i need to be done&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Praneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827689#M352993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T05:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827690#M352994</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;use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;message  'Error in list memory'  type 'E' .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:18:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827690#M352994</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2007-01-29T05:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827691#M352995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check if you have a message no 000 in message class ZMSG using TC SE91. If not, create it as '&amp;amp;' and execute the report again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Susanth,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827691#M352995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T05:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827692#M352996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anversa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is happening before going to call list_from_memory...&lt;/P&gt;&lt;P&gt;is it the problem with submit, iam in EC 6.2 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Praneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:22:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827692#M352996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T05:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827693#M352997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is this abaplist that u've used in internal table declaration?&lt;/P&gt;&lt;P&gt;if it is a structure then u haven't defined it before using it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827693#M352997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T05:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827694#M352998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Looks like you are trying to execute a standard SAP program with selection screen.&lt;/P&gt;&lt;P&gt;But there cannot be a parameter field p_test in that program. Please check the code in the program and note down the field names and pass the values accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:25:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827694#M352998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T05:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827695#M352999</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've declared it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab type table of abaplist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The short dump description is like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Errors         MESSAGE_TYPE_X &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current application program detected a situation which really&lt;/P&gt;&lt;P&gt; should not occur. Therefore, a termination with a short dump was&lt;/P&gt;&lt;P&gt; triggered on purpose by the key word MESSAGE (type X).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827695#M352999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T05:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem with short dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827696#M353000</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;p_test is exist there at standard program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 05:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-short-dump/m-p/1827696#M353000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T05:31:17Z</dc:date>
    </item>
  </channel>
</rss>

