<?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: Dump after execution of select statement.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633852#M1762181</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For all entries is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if lt_itab is not initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select fieldvalue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dat_table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; into&amp;nbsp; lt_inttable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for all entries in lt_itab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where sel_field = lt_itab-sel_field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if&amp;nbsp;&amp;nbsp; sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Aug 2013 14:01:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-08-06T14:01:27Z</dc:date>
    <item>
      <title>Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633840#M1762169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Techies ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp; Am facing an issue while executing a select query where clause .&lt;/P&gt;&lt;P&gt;Select fieldvalue INTO TABLE me-&amp;gt;t_values FROM zvlv_index &lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE logid IN t_logid&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND fieldid = n_field group by fieldvalue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in test system when i execute its running fine and i have observed tht records in table tht being used in WHERE clause are 6008 .&lt;/P&gt;&lt;P&gt;in prod system when i execute its giving DUMP and i have observed tht records in table tht being used in WHERE clause is 10244.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i heard tht if there are more than 10k records in WHERE clause then it can give dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got EXCEPTION CLASS : CX_SY_OPEN_SQL_DB&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ERROR NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : DBIF_RSQL_INVALID_RSQL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 10:43:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633840#M1762169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T10:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633841#M1762170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you make an SQL trace, get the exact SELECT statement that is called by your program and give it ?&amp;nbsp; &lt;/P&gt;&lt;P&gt;maybe you make a group by on a field not present in a select ... &lt;/P&gt;&lt;P&gt;&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;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:08:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633841#M1762170</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2013-08-06T11:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633842#M1762171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Range table when used in &lt;EM&gt;Select..IN&lt;/EM&gt; format has a size limit, governed by server memory.&lt;/P&gt;&lt;P&gt;My system gives dumps if range table has 2000+ records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can change select query to &lt;EM&gt;Select..for all entries in&lt;/EM&gt;.. format to avoid dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:16:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633842#M1762171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T11:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633843#M1762172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen&lt;/P&gt;&lt;P&gt;as there are 10000+ records in &lt;SPAN style="color: #333333; font-size: 12.222222328186035px; background-color: #ffffff;"&gt; t_logid&lt;/SPAN&gt;, it is going to dump&lt;/P&gt;&lt;P&gt;use for all entries in t_logid in the select statement to avoid the dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Srini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633843#M1762172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T11:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633844#M1762173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read this. &lt;A _jive_internal="true" href="https://answers.sap.com/thread/3388378"&gt;http://scn.sap.com/thread/3388378&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633844#M1762173</guid>
      <dc:creator>swen_hettstedt2</dc:creator>
      <dc:date>2013-08-06T11:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633845#M1762174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your understanding is correct. In the where clause if you use ranges using IN statement, SAP system provides a dump if the number of records in range object is more than 9999 entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see that the same thing happens when you try to provide more than 9999 entries in SE16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best option is to change the code to use for all entries instead of using IN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sriranjani Chimakurthy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633845#M1762174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T11:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633846#M1762175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case break the where condition values into two tables and write two select queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Govind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633846#M1762175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T11:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633847#M1762176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi manish , &lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i tried like this ...&lt;/P&gt;&lt;P&gt;If not t_logid[] is initial.&lt;/P&gt;&lt;P&gt;sort t_logid.&lt;/P&gt;&lt;P&gt;select fieldvalue into table me-&amp;gt;t_values from zvlv_index &lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for all entries in t_logid&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where logid = t_logid-low&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and fieldid = n_field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633847#M1762176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T11:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633848#M1762177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello techies,&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; am new to abap and i dont have much idea how to use for all entries .&lt;/P&gt;&lt;P&gt;can you post how to use it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 11:52:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633848#M1762177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T11:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633849#M1762178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you still getting the SHort dump after this select query?&lt;/P&gt;&lt;P&gt;What was the Short Dump Exception name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Select Query with For All Entries looks good.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 13:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633849#M1762178</guid>
      <dc:creator>former_member206439</dc:creator>
      <dc:date>2013-08-06T13:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633850#M1762179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A simple example you need to get material and its description for a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr from mara into table it_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it_mara is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select maktx from makt into table it_makt&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for all entries in it_mara&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where matnr = it_mara-matnr.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it means for all the materials you fetched from mara table you will get the description from makt table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possiblities of error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether the structure declared for int table and the order in select are same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can't find out from the above inputs then it might be the cause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check and revert for further queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dinesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 13:47:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633850#M1762179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T13:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633851#M1762180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The limit is not any exact number of records in selection criteria, but the size of the resulting SQL statement in KB:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="64060" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 13:53:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633851#M1762180</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2013-08-06T13:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633852#M1762181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For all entries is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if lt_itab is not initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select fieldvalue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dat_table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; into&amp;nbsp; lt_inttable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for all entries in lt_itab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where sel_field = lt_itab-sel_field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if&amp;nbsp;&amp;nbsp; sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 14:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633852#M1762181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T14:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633853#M1762182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dinesh , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Can elaborate your line saying :&lt;/P&gt;&lt;P&gt; "check whether the structure declared for internal table and order in select are same"&amp;nbsp; ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 14:35:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633853#M1762182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T14:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633854#M1762183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Govind ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i did not got your answer , canyou come with an elaborate explanation taking exmple of my code which i had written previously.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 14:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633854#M1762183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T14:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633855#M1762184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the int table decln&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty_mara,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ersda&amp;nbsp; type mara-ersda,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ernam type mara-ernam,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end of ty_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data it_mara type table of ty_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ersda mara ernam from mara into it_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here the sequence declared in structure and used in select are different..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also in select use fields in order as they are in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these two will also lead to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dinesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 15:05:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633855#M1762184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T15:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633856#M1762185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have an option to write FOR ALL ENTRIES then better to go for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you dont have an option and need to fetch all the records using where condition table which contain more than 9999 records in your case it is 10244. Then break that values into two internal table one contains 9999 reords and second one 245 recods( Sum is 10244). And write two select queries and appending into single table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Govind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 15:32:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633856#M1762185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-06T15:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633857#M1762186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hellooo, you cannot name an exact number like 9999 here, as I keep saying and saying. Depending on the length of each criteria, you might start seeing the dump with less or more entries.&lt;/P&gt;&lt;P&gt;It is the resulting size of the SQL statement that matters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here we only know that it works with 6008 and dumps with 10244 entries. The "limit" can be anywhere inbetween.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 08:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633857#M1762186</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2013-08-07T08:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633858#M1762187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello govind,&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i got your answer , but when am trying that am not getting ,&lt;/P&gt;&lt;P&gt;we have to use package keyword or how we need to break internal table into two ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 10:53:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633858#M1762187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-07T10:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dump after execution of select statement..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633859#M1762188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write following statement in order to break into two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; APPEND LINES OF &amp;lt;t_logid&amp;gt; FROM 1 TO 100 TO &amp;lt;t_logid1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; APPEND LINES OF &amp;lt;t_logid&amp;gt; FROM 1 TO 100 TO &amp;lt;t_logid2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then you can write two select queries. In second query write APPENDING TABLE &amp;lt;t_values&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not good method. But if you have to complete your requirement then go for it. As developer we can fullfill requirement in any method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Govind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Aug 2013 13:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-after-execution-of-select-statement/m-p/9633859#M1762188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-07T13:46:05Z</dc:date>
    </item>
  </channel>
</rss>

