<?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: Short Dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548484#M579973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried every solutions and the shortdump continues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2007 10:33:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-19T10:33:18Z</dc:date>
    <item>
      <title>Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548479#M579968</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'm having a problem, i have a program that selects data from a join of the table mkpf with the table mseg. what appens is that when i select a material with more data it gives a short dump, and i don't know how to solve it. Any ideas? Next i'm going to put the code where the short dump is called:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT mkpf&lt;SUB&gt;mblnr mkpf&lt;/SUB&gt;mjahr mkpf~budat&lt;/P&gt;&lt;P&gt;         mkpf&lt;SUB&gt;cputm mkpf&lt;/SUB&gt;xblnr mkpf~xabln&lt;/P&gt;&lt;P&gt;         mkpf&lt;SUB&gt;bktxt mkpf&lt;/SUB&gt;frbnr&lt;/P&gt;&lt;P&gt;         mseg&lt;SUB&gt;matnr mseg&lt;/SUB&gt;werks mseg~mblnr&lt;/P&gt;&lt;P&gt;         mseg&lt;SUB&gt;zeile mseg&lt;/SUB&gt;mjahr mseg~bwart&lt;/P&gt;&lt;P&gt;         mseg&lt;SUB&gt;lgort mseg&lt;/SUB&gt;meins mseg~shkzg&lt;/P&gt;&lt;P&gt;         mseg&lt;SUB&gt;menge mseg&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;         INTO CORRESPONDING FIELDS OF TABLE t_aux_pt&lt;/P&gt;&lt;P&gt;         FROM mkpf JOIN mseg ON&lt;/P&gt;&lt;P&gt;                   ( mseg&lt;SUB&gt;mblnr = mkpf&lt;/SUB&gt;mblnr ) AND&lt;/P&gt;&lt;P&gt;                   ( mseg&lt;SUB&gt;mjahr = mkpf&lt;/SUB&gt;mjahr )&lt;/P&gt;&lt;P&gt;         WHERE budat &amp;lt; datamv-low&lt;/P&gt;&lt;P&gt;           AND matnr IN mat&lt;/P&gt;&lt;P&gt;           AND werks =  centro&lt;/P&gt;&lt;P&gt;           AND lgort IN depos&lt;/P&gt;&lt;P&gt;           AND bwart IN tpomov&lt;/P&gt;&lt;P&gt;           AND sobkz IN stkesp&lt;/P&gt;&lt;P&gt;           AND shkzg = 'H'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the short dump is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DBIF_RSQL_INVALID_RSQL&lt;/P&gt;&lt;P&gt;CX_SY_OPEN_SQL_DB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548479#M579968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548480#M579969</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 SELECT ENDSELCT and use PACKAGE SIZE option to retrive the data in packets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT mkpf&lt;SUB&gt;mblnr mkpf&lt;/SUB&gt;mjahr mkpf~budat&lt;/P&gt;&lt;P&gt;mkpf&lt;SUB&gt;cputm mkpf&lt;/SUB&gt;xblnr mkpf~xabln&lt;/P&gt;&lt;P&gt;mkpf&lt;SUB&gt;bktxt mkpf&lt;/SUB&gt;frbnr&lt;/P&gt;&lt;P&gt;mseg&lt;SUB&gt;matnr mseg&lt;/SUB&gt;werks mseg~mblnr&lt;/P&gt;&lt;P&gt;mseg&lt;SUB&gt;zeile mseg&lt;/SUB&gt;mjahr mseg~bwart&lt;/P&gt;&lt;P&gt;mseg&lt;SUB&gt;lgort mseg&lt;/SUB&gt;meins mseg~shkzg&lt;/P&gt;&lt;P&gt;mseg&lt;SUB&gt;menge mseg&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;APPENDING&amp;lt;/b&amp;gt; CORRESPONDING FIELDS OF TABLE t_aux_pt &amp;lt;b&amp;gt;PACKAGE SIZE 500&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;FROM mkpf JOIN mseg ON&lt;/P&gt;&lt;P&gt;( mseg&lt;SUB&gt;mblnr = mkpf&lt;/SUB&gt;mblnr ) AND&lt;/P&gt;&lt;P&gt;( mseg&lt;SUB&gt;mjahr = mkpf&lt;/SUB&gt;mjahr )&lt;/P&gt;&lt;P&gt;WHERE budat &amp;lt; datamv-low&lt;/P&gt;&lt;P&gt;AND matnr IN mat&lt;/P&gt;&lt;P&gt;AND werks = centro&lt;/P&gt;&lt;P&gt;AND lgort IN depos&lt;/P&gt;&lt;P&gt;AND bwart IN tpomov&lt;/P&gt;&lt;P&gt;AND sobkz IN stkesp&lt;/P&gt;&lt;P&gt;AND shkzg = 'H'.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:15:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548480#M579969</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-19T10:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548481#M579970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be due to too many entries in a range table or select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from table where field in MAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If MAT has too many entries the DB will choke on it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So try with Select .. Appending ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548481#M579970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548482#M579971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the declarations in the internal table  t_aux_pt  if they are compatible with those fields used in the SELECT statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548482#M579971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548483#M579972</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 think the date format, you give can be a problem in the WHERE condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try comment out (with *) the some part of the code to see is it working now?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the problem quickly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548483#M579972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548484#M579973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried every solutions and the shortdump continues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:33:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548484#M579973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Short Dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548485#M579974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try replacing the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &amp;lt;b&amp;gt;WHERE matnr IN Mat&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       &amp;lt;b&amp;gt;FOR ALL ENTRIES IN mat&lt;/P&gt;&lt;P&gt;       WHERE matnr EQ mat-low.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 09:43:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump/m-p/2548485#M579974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T09:43:05Z</dc:date>
    </item>
  </channel>
</rss>

