<?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: SQL DUMP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782754#M1308546</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I've mentioned, you can remove some of those parameters from the original select, receive more records and then use the removed parameters in a loop over the resulting records to postprocess and eliminate those records that are not needed as per selection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jun 2009 13:10:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-25T13:10:27Z</dc:date>
    <item>
      <title>SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782747#M1308539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have declared one internal table like this it like pa0001 occurs 0 with header line ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and am using SQL query like this ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select pernr endda begda werks persg persk btrtl orgeh plans ename&lt;/P&gt;&lt;P&gt;from pa0001 into corresponding fields of table&lt;/P&gt;&lt;P&gt;it where pernr in pnppernr and&lt;/P&gt;&lt;P&gt;endda ge sy-datum and&lt;/P&gt;&lt;P&gt;begda le sy-datum and&lt;/P&gt;&lt;P&gt;werks in pnpwerks and&lt;/P&gt;&lt;P&gt;persg in pnppersg and&lt;/P&gt;&lt;P&gt;persk in pnppersk and&lt;/P&gt;&lt;P&gt;btrtl in pnpbtrtl and&lt;/P&gt;&lt;P&gt;( ( orgeh in pnporgeh ) or&lt;/P&gt;&lt;P&gt;( orgeh in pnpobjid ) ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but am getting dump some time when so many records are there and dump saya that too many input parameters and no more space for input parameters &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i shd do to correct this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Smeeta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 07:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782747#M1308539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T07:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782748#M1308540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you please send us screenshot of your code including the data declaration part ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR Jaideep,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 08:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782748#M1308540</guid>
      <dc:creator>jaideepsharma</dc:creator>
      <dc:date>2009-06-24T08:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782749#M1308541</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 could be because of more numbe rof entries with the select options or ranges that you are using.&lt;/P&gt;&lt;P&gt;   Try to reduce the number of entries in these and do another filter.&lt;/P&gt;&lt;P&gt;   May be this will resolve the short dump.&lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 13:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782749#M1308541</guid>
      <dc:creator>former_member219399</dc:creator>
      <dc:date>2009-06-24T13:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782750#M1308542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if you can add subty, objps and sprps as aditional search parameters, this way you'll be using almost all the table key and thus receive a great speed bump, so the search will not timeout even if it has many entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you'll need to remove some of your parameters to pull this off (if there are too many parameters), and the postprocess the internal table to add the missing filters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 14:12:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782750#M1308542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T14:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782751#M1308543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Most probable cause: Length of your SQL when converted to Native SQL it lengthy by supported by database. Tyr reducing the lenth. IN clause increases SQL length significantly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 17:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782751#M1308543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T17:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782752#M1308544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is  i have to match with all Selection Screen parameters so am using those so many IN in SQL query to get the exact matching record  i can't reduse them so   is there any other valuable suggestion i can use ?&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;&lt;/P&gt;&lt;P&gt;Smeeta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 04:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782752#M1308544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T04:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782753#M1308545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please chk whether u r passing the values in the same order in the selection query&lt;/P&gt;&lt;P&gt; as in the Internal table.&lt;/P&gt;&lt;P&gt;And also as u r selecting many fields check the range of the fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 04:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782753#M1308545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T04:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782754#M1308546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I've mentioned, you can remove some of those parameters from the original select, receive more records and then use the removed parameters in a loop over the resulting records to postprocess and eliminate those records that are not needed as per selection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2009 13:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782754#M1308546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-25T13:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: SQL DUMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782755#M1308547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jun 2009 09:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sql-dump/m-p/5782755#M1308547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-26T09:32:37Z</dc:date>
    </item>
  </channel>
</rss>

