<?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 at select stmt in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352435#M1036406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * INTO LS_BSIP FROM BSIP
WHERE (LT_SEL_DATA).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the where codition for where (LT_SEL_DATA)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2008 15:51:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-25T15:51:42Z</dc:date>
    <item>
      <title>Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352432#M1036403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the program is dumping at the below stmt. &lt;/P&gt;&lt;P&gt;*--  Check whether any entry is present in the the table BSIP&lt;/P&gt;&lt;P&gt;  SELECT * INTO LS_BSIP FROM BSIP&lt;/P&gt;&lt;P&gt;          WHERE (LT_SEL_DATA).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LT_SEL_DATA is declared as&lt;/P&gt;&lt;P&gt;  TYPES : BEGIN OF T_SEL_DATA,&lt;/P&gt;&lt;P&gt;            FIELD(72) TYPE C,&lt;/P&gt;&lt;P&gt;          END   OF T_SEL_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : LT_SEL_DATA TYPE STANDARD TABLE OF T_SEL_DATA WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;. So the dump is because of the no data in LT_SEL_DATA ?&lt;/P&gt;&lt;P&gt;Shall I put below code to solve the dump ?&lt;/P&gt;&lt;P&gt;IF NOT LT_SEL_DATA[] IS INITIAL.&lt;/P&gt;&lt;P&gt;  SELECT * INTO LS_BSIP FROM BSIP&lt;/P&gt;&lt;P&gt;          WHERE (LT_SEL_DATA).&lt;/P&gt;&lt;P&gt;ENDIF .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks IN ADV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 15:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352432#M1036403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T15:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352433#M1036404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the way I use dynamic WHERE statements is that I pass a string, not an ITAB, into them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you can catch the system exception that is thrown in a try-catch-block and check in the debugger what instance of an exception class hierarchy is thrown; this would provide a first pointer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best of luck&lt;/P&gt;&lt;P&gt;Joerg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 15:45:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352433#M1036404</guid>
      <dc:creator>joerg_wegener</dc:creator>
      <dc:date>2008-08-25T15:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352434#M1036405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT * INTO LS_BSIP FROM BSIP&lt;/P&gt;&lt;P&gt;WHERE (LT_SEL_DATA).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where ru filling LT_SEL_DATA....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also, u need to use for all entries concept when fetching data from BSIP based on LT_SEL_DATA data...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 15:45:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352434#M1036405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T15:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352435#M1036406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * INTO LS_BSIP FROM BSIP
WHERE (LT_SEL_DATA).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the where codition for where (LT_SEL_DATA)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 15:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352435#M1036406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T15:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352436#M1036407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a new variable LV_WHERE AS STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then loop through internal table LT_SEL_DATA and fill the variable LV_WHERE and pass this to the select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 16:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352436#M1036407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T16:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352437#M1036408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which one is the correct one  ?&lt;/P&gt;&lt;P&gt;1). How to use try catch in ABAP.&lt;/P&gt;&lt;P&gt;I did not use try catch block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if &lt;/P&gt;&lt;P&gt;&lt;EM&gt;SELECT * INTO LS_BSIP FROM BSIP&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WHERE (LT_SEL_DATA).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Where ru filling LT_SEL_DATA....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;also, u need to use for all entries concept when fetching data from BSIP based on LT_SEL_DATA data...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;LT_SEL_DATA is filling at 2 or 3 places.&lt;/P&gt;&lt;P&gt;however it is of FIELD(72) TYPE C,&lt;/P&gt;&lt;P&gt;how it selects from BSIP ?&lt;/P&gt;&lt;P&gt;I don't understand ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and how to solve this by avaoiding dump.&lt;/P&gt;&lt;P&gt;Please help   me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 16:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352437#M1036408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T16:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352438#M1036409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that a custom program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LT_SEL_DATA gets filled with a common condition, that's how it works. The table can be empty acording to the documentation, that's not the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post the real Dump description not the suggestions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 16:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352438#M1036409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T16:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352439#M1036410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The below is dump analysis...&lt;/P&gt;&lt;P&gt;Can any body  also explain how it selects from bsip table id  LT_SEL_DATA is declared as FIELD(72) TYPE C, ?&lt;/P&gt;&lt;P&gt;SELECT * INTO LS_BSIP FROM BSIP&lt;/P&gt;&lt;P&gt;WHERE (LT_SEL_DATA).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;====================================&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current ABAP/4 program attempted to execute an ABAP/4 Open SQL&lt;/P&gt;&lt;P&gt;statement containing a WHERE condition of the form WHERE (itab) or&lt;/P&gt;&lt;P&gt;WHERE ... AND (itab). The part of the WHERE condition specified at&lt;/P&gt;&lt;P&gt;runtime in the internal table itab is incorrectly parenthesized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to correct the error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the error occurred in a non-modified SAP program, you may be&lt;/P&gt;&lt;P&gt;able to find a solution in the SAP note system.&lt;/P&gt;&lt;P&gt;If you have access to the note system yourself, use the following&lt;/P&gt;&lt;P&gt;search criteria:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; "SAPSQL_WHERE_PARENTHESES"&lt;/P&gt;&lt;P&gt; "SAPLZADI_F_DUPLICATE_INV_CHECK " or "LZADI_F_DUPLICATE_INV_CHECKU01 "&lt;/P&gt;&lt;P&gt; "Z_ADI_F_DUPLICATE_INVOICE_CHK"&lt;/P&gt;&lt;P&gt;If you cannot solve the problem yourself, please send the&lt;/P&gt;&lt;P&gt;following documents to SAP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. A hard copy print describing the problem.&lt;/P&gt;&lt;P&gt;   To obtain this, select the "Print" function on the current screen.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source code extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;001310              INTO LT_SEL_DATA-FIELD.&lt;/P&gt;&lt;P&gt;001320       APPEND LT_SEL_DATA.&lt;/P&gt;&lt;P&gt;001330     ENDIF.&lt;/P&gt;&lt;P&gt;001340&lt;/P&gt;&lt;P&gt;001350     CLEAR LT_SEL_DATA.&lt;/P&gt;&lt;P&gt;001360     CONCATENATE 'AND SHKZG NE '''&lt;/P&gt;&lt;P&gt;001370                  LV_SHKZG&lt;/P&gt;&lt;P&gt;001380                  ''''&lt;/P&gt;&lt;P&gt;001390            INTO LT_SEL_DATA-FIELD.&lt;/P&gt;&lt;P&gt;001400     APPEND LT_SEL_DATA.&lt;/P&gt;&lt;P&gt;001410&lt;/P&gt;&lt;P&gt;001420&lt;/P&gt;&lt;P&gt;001430     IF I_XBLNR IS INITIAL.&lt;/P&gt;&lt;P&gt;001440&lt;/P&gt;&lt;P&gt;001450   *    Include the field for Amount in local currency in the selection&lt;/P&gt;&lt;P&gt;001460   *    criteria on BSIP table&lt;/P&gt;&lt;P&gt;001470       LV_WRBTR = I_WRBTR.&lt;/P&gt;&lt;P&gt;001480       CONDENSE LV_WRBTR.&lt;/P&gt;&lt;P&gt;001490&lt;/P&gt;&lt;P&gt;001500       CLEAR LT_SEL_DATA.&lt;/P&gt;&lt;P&gt;001510       CONCATENATE 'AND WRBTR = '''&lt;/P&gt;&lt;P&gt;001520                   LV_WRBTR&lt;/P&gt;&lt;P&gt;001530                   ''''&lt;/P&gt;&lt;P&gt;001540              INTO LT_SEL_DATA-FIELD.&lt;/P&gt;&lt;P&gt;001550       APPEND LT_SEL_DATA.&lt;/P&gt;&lt;P&gt;001560&lt;/P&gt;&lt;P&gt;001570     ENDIF.&lt;/P&gt;&lt;P&gt;001580&lt;/P&gt;&lt;P&gt;001590   *    Check whether any entry is present in the the table BSIP&lt;/P&gt;&lt;P&gt;001600     SELECT * INTO LS_BSIP FROM BSIP&lt;/P&gt;&lt;P&gt;     &amp;gt;             WHERE (LT_SEL_DATA).&lt;/P&gt;&lt;P&gt;001620&lt;/P&gt;&lt;P&gt;001630   *    Check credit memos or not&lt;/P&gt;&lt;P&gt;001640       CHECK NOT ( I_SHKZG = LC_DB_IND AND LS_BSIP-SHKZG EQ SPACE ).&lt;/P&gt;&lt;P&gt;001650&lt;/P&gt;&lt;P&gt;001660   *    Check if BSIP entry refers to the same document or not&lt;/P&gt;&lt;P&gt;001670       CHECK NOT ( I_BELNR = LS_BSIP-BELNR AND&lt;/P&gt;&lt;P&gt;001680                   I_BUKRS = LS_BSIP-BUKRS AND&lt;/P&gt;&lt;P&gt;001690                   I_GJAHR = LS_BSIP-GJAHR ).&lt;/P&gt;&lt;P&gt;001700&lt;/P&gt;&lt;P&gt;001710   *    Get the reverse document number for the document selected&lt;/P&gt;&lt;P&gt;001720       CLEAR LV_STBLG.&lt;/P&gt;&lt;P&gt;001730       SELECT SINGLE STBLG&lt;/P&gt;&lt;P&gt;001740         INTO LV_STBLG&lt;/P&gt;&lt;P&gt;001750         FROM BKPF&lt;/P&gt;&lt;P&gt;001760        WHERE BELNR = LS_BSIP-BELNR&lt;/P&gt;&lt;P&gt;001770          AND BUKRS = LS_BSIP-BUKRS&lt;/P&gt;&lt;P&gt;001780          AND GJAHR = LS_BSIP-GJAHR.&lt;/P&gt;&lt;P&gt;001790&lt;/P&gt;&lt;P&gt;001800   *     Only if NO Vendor Invoice reversal has taken place, throw&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 16:34:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352439#M1036410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T16:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352440#M1036411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Enter debug mode and post the contents of LT_SEL_DATA at the crash. The dump says it's something about that.&lt;/P&gt;&lt;P&gt;If there is sensible information, just edit it before posting it here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 16:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352440#M1036411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T16:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352441#M1036412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at you internal table string&lt;/P&gt;&lt;P&gt;- The AND should stand between two logical tests, not at beginning or at end&lt;/P&gt;&lt;P&gt;- As the dump suggested, look for parenthesis, are there so many parentheses opening "(" than closing ")".&lt;/P&gt;&lt;P&gt;- Are the quotes '"' grouped by pair&lt;/P&gt;&lt;P&gt;- If you cannot found, remove every test one per one until you get the faulty one&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 16:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352441#M1036412</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-08-25T16:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352442#M1036413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that you suggestion to remove ( )  ' '&lt;/P&gt;&lt;P&gt;and check the program  ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking the issue in production.&lt;/P&gt;&lt;P&gt;Do I needto ask test data  and do investigation in development ?&lt;/P&gt;&lt;P&gt;I am not able to figure this our.&lt;/P&gt;&lt;P&gt;Could you  guys help me  by explaining clearly ?&lt;/P&gt;&lt;P&gt;Thanks in ADV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 18:16:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352442#M1036413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T18:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352443#M1036414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I needto give solution by debugging in production. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 18:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352443#M1036414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T18:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352444#M1036415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Ramiro has asked, when debugging your code, what is the Contents of your Internal Table (LT_SEL_DATA) before you execute the Select Statement?   Why debug in Proudction, can't you dedug in Development or Quality or Sandbox?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 18:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352444#M1036415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T18:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dump at select stmt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352445#M1036416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry if it's too late.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post all the appends to the where table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe we can figure out what is going wrong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 20:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-at-select-stmt/m-p/4352445#M1036416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T20:20:19Z</dc:date>
    </item>
  </channel>
</rss>

