<?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: BSEG - Select statement slow in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022075#M1898033</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No you can't change it yourself to a question, this is only possible within 15 minutes after posting. A space moderator can do it (they can even remove the tick if they think this question has been discussed x-times before and the participants should not get any points for answering recurring questions)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Apr 2015 05:52:44 GMT</pubDate>
    <dc:creator>JL23</dc:creator>
    <dc:date>2015-04-28T05:52:44Z</dc:date>
    <item>
      <title>BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022053#M1898011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Good day master's!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;I'm having a so slow query with this code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;EBELN BELNR AUGBL GJAHR KOSTL &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;IT_BSEG &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;BSEG &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;EBELN &lt;SPAN class="L0S52"&gt;EQ &lt;/SPAN&gt;LS_EKKO&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;EBELN &lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;BUKRS &lt;SPAN class="L0S52"&gt;EQ &lt;/SPAN&gt;S_BUKRS&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; text-decoration: underline;"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;I use ABAP debugger and found out the cause why my program are so slow. Reading the BSEG table take a while to read. Is there alternate way to use.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Thanks, Sorry for my bad english.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 03:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022053#M1898011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T03:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022054#M1898012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kenneth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BSEG being a cluster table make use of OPEN CURSOR method to get bulk of data at a time. Below is a sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN CURSOR l_cursor FOR&lt;/P&gt;&lt;P&gt;SELECT EBELN BELNR AUGBL GJAHR KOSTL FROM BESG&lt;/P&gt;&lt;P&gt;WHERE EBELN = LS_EKKO-EBELN AND BUKRS = S_BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FETCH NEXT CURSOR l_cursor INTO TABLE IT_BSEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOSE CURSOR l_cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;~Athreya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 03:50:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022054#M1898012</guid>
      <dc:creator>former_member185613</dc:creator>
      <dc:date>2015-04-27T03:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022055#M1898013</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;Please can you explain ,what will happened internal when we are using open cursor &lt;/P&gt;&lt;P&gt; to improve performance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 04:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022055#M1898013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T04:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022056#M1898014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kenneth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1- Partial solution: Add GJAHR to complete most of the table keys, you should never make a select to BSEG without BUKRS, BELNR and GJAHR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2- Total Solution: don't use BSEG. BSEG is a Cluster table you have the same info in BSIS, BSID, BSIK, BSAS, BSAD, BSAK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BSID, BSAD = KUNNR&lt;/P&gt;&lt;P&gt;BSIK, BSAK = LIFNR&lt;/P&gt;&lt;P&gt;BSIS, BSAS = HKONT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example If you need vendor data just use BSID (partially) BSAD (totally)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 04:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022056#M1898014</guid>
      <dc:creator>Rodrigo-Giner</dc:creator>
      <dc:date>2015-04-27T04:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022057#M1898015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A SELECT statement internally uses cursor for fetching the data. The main difference is that a SELECT statement directly writes the data into the target memory. Where as a cursor selects the data first and write to the memory as a chunk of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cursors are mainly used when there is chunk of data to be retrieved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;~Athreya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 04:58:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022057#M1898015</guid>
      <dc:creator>former_member185613</dc:creator>
      <dc:date>2015-04-27T04:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022058#M1898016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It didn't changed at all sir.&lt;/P&gt;&lt;P&gt;ABAP debugger take a while to execute "&lt;SPAN class="L0S52" style="font-size: 10pt;"&gt;FETCH &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-size: 10pt;"&gt;NEXT &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-size: 10pt;"&gt;CURSOR &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;L_CUR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;IT_BSEG&lt;SPAN class="L0S55"&gt;."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Anyway is their any other method to get the Accounting Document no of Purchase order w/o using BSEG?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 05:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022058#M1898016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T05:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022059#M1898017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sir I didn't use GJAHR because table EKKO/EKPO don't have that, And their is a high chance that the payment of purchase order might delay or P.O. from December will be pay next year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I really need is to get the Accounting Document no. of Purchase order. Uncle google say use BSEG. But BSEG are to slow to use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 05:58:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022059#M1898017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T05:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022060#M1898018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then, in your selection criteria you are selecting data by PO number only ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 09:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022060#M1898018</guid>
      <dc:creator>former_member490509</dc:creator>
      <dc:date>2015-04-27T09:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022061#M1898019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Hi Kenneth,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Please try this&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;TYPES&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_RSEG&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BELNR &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;RSEG&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;BELNR&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GJAHR &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;RSEG&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;GJAHR&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EBELN &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;RSEG&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;EBELN&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EBELP &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;RSEG&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;EBELP&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AWKEY &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;AWKEY&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_RSEG&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;TYPES&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_BKPF&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BUKRS &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;BUKRS&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BELNR &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;BELNR&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GJAHR &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;GJAHR&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AWKEY &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;AWKEY&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_BKPF&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;IT_RSEG &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_RSEG&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IT_BKPF &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;TY_BKPF&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FIELD-SYMBOLS &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&amp;lt;FS_RSEG&amp;gt; &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;TY_RSEG&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;BELNR GJAHR EBELN EBELP &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;RSEG &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;CORRESPONDING &lt;SPAN class="L0S52"&gt;FIELDS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;IT_RSEG&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;WHERE&amp;nbsp; &lt;/SPAN&gt;EBELN &lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;S_EBELN&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;IT_RSEG &lt;SPAN class="L0S52"&gt;ASSIGNING &lt;/SPAN&gt;&amp;lt;FS_RSEG&amp;gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;FS_RSEG&amp;gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;AWKEY+0&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;10&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&amp;lt;FS_RSEG&amp;gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;BELNR&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;FS_RSEG&amp;gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;AWKEY+10&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;4&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&amp;lt;FS_RSEG&amp;gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;GJAHR&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;ENDLOOP&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;IT_RSEG[] &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;BUKRS BELNR GJAHR AWKEY &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;BKPF &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;IT_BKPF &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ALL &lt;/SPAN&gt;ENTRIES &lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;IT_RSEG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;AWKEY &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;IT_RSEG&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;AWKEY&lt;SPAN class="L0S55"&gt;.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;IT_BKPF[] &lt;SPAN class="L0S52"&gt;IS&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;* &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;BSEG &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;IT_BSEG &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ALL &lt;/SPAN&gt;ENTRIES &lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;IT_BKPF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;BUKRS &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;IT_BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;BUKRS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;AND&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;BELNR &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;IT_BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;BELNR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;AND&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;GJAHR &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;IT_BKPF&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;GJAHR&lt;SPAN class="L0S55"&gt;.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;I Think , it is helpful.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Nilesh Patel&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 09:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022061#M1898019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T09:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022062#M1898020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kenneth ,&lt;/P&gt;&lt;P&gt;Try to select from &lt;STRONG&gt;BKPF&lt;/STRONG&gt; ( Accounting Document Header ) as following : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BKPF-XBLNR = EKKO-EBELN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you will get &lt;STRONG&gt;BELNR&lt;/STRONG&gt; ( Document Number )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 09:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022062#M1898020</guid>
      <dc:creator>former_member490509</dc:creator>
      <dc:date>2015-04-27T09:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022063#M1898021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It didn't work sir.&lt;/P&gt;&lt;P&gt;I try to use XBLNR but in Accounting document column doesn't show anything.&lt;/P&gt;&lt;P&gt;I try to do it manually, atleast 10 line by searching P.O. no. to BKPF-XBLNR using SE16 and still no entries found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Thanks for the effort sir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 09:54:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022063#M1898021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T09:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022064#M1898022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kenneth,&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; try to take the first 2 digits of PO then put them in XBLNR field like this : 45*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should find data. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 10:03:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022064#M1898022</guid>
      <dc:creator>former_member490509</dc:creator>
      <dc:date>2015-04-27T10:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022065#M1898023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow this is almost perfect sir, But not all P.O. No. exist in RSEG.&lt;/P&gt;&lt;P&gt;I guest BSEG has everything, But that everything makes it slow. &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1273/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is how to get the Accounting document no (BELNR) of Purchase order no. (EBELN) and use the BELNR to get the Payments of P.O. (PAYR-CHECT,PAYR-RWBTR).&lt;/P&gt;&lt;P&gt;BSEG has AUGBL and BELNR (in case AUGBL fail).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 10:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022065#M1898023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T10:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022066#M1898024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kenneth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All PO no exist in RSEG after invoice against PO no .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You please try table &lt;SPAN style="font-size: 13.3333330154419px;"&gt; EKBE . Pass PO no and get BELNR and GJAHR . And then pass in BKPF-AWKEY.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that Result of BKPF&amp;nbsp; pass in BSEG. Get All result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nilesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 10:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022066#M1898024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-27T10:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022067#M1898025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WOW!!!&lt;BR /&gt;It works like magic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much Sir Nilesh Patel &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1273/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 01:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022067#M1898025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-28T01:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022068#M1898026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I mark you as answer??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 01:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022068#M1898026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-28T01:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022069#M1898027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kenneth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Read this blog: &lt;/SPAN&gt;&lt;A class="jive-link-blog-small" data-containerid="60998" data-containertype="37" data-objectid="82566" data-objecttype="38" href="http://scn.sap.com/community/support/blog/2013/04/03/how-to-close-a-discussion-and-why"&gt;http://scn.sap.com/community/support/blog/2013/04/03/how-to-close-a-discussion-and-why&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raphael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 03:33:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022069#M1898027</guid>
      <dc:creator>raphael_almeida</dc:creator>
      <dc:date>2015-04-28T03:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022070#M1898028</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;Simply use the key field in select query.&lt;/P&gt;&lt;P&gt;BUKRS&lt;/P&gt;&lt;P&gt;BELNR&lt;/P&gt;&lt;P&gt;GJAHR&lt;/P&gt;&lt;P&gt;BUZEI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 04:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022070#M1898028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-28T04:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022071#M1898029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This can't be closed as it is not posted as a question. The tick from the question box was removed.&lt;/P&gt;&lt;P&gt;This sentence is missing in the original post: &lt;SPAN style="color: #8b8b8b; font-size: 12px;"&gt;This question is &lt;/SPAN&gt;&lt;STRONG class="font-color-danger" style="font-size: 12px; color: #c20000; background: #ffffff;"&gt;Not Answered.&lt;/STRONG&gt;&lt;SPAN style="padding: 0 0 0 5px; font-size: 0.95em; color: #8b8b8b; background: #ffffff;"&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/3733608" style="font-weight: inherit; font-style: inherit; font-size: 11.399998664856px; font-family: inherit; color: #8ca9cd; background: transparent;"&gt;(Mark as assumed answered)&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #8b8b8b; background: #ffffff; font-size: 13.3333330154419px; padding: 0 0 0 5px;"&gt;The speech bubble in the left corner of the question in your communication stream is white and not blue like it is for a question.&lt;/SPAN&gt;&lt;SPAN style="color: #8b8b8b; font-size: 0.95em; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 05:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022071#M1898029</guid>
      <dc:creator>JL23</dc:creator>
      <dc:date>2015-04-28T05:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: BSEG - Select statement slow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022072#M1898030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Hi Kenneth,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Please try this.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;A __default_attr="82566" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="How to close a discussion and why" href="https://community.sap.com/" modifiedtitle="true" title="How to close a discussion and why"&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Nilesh Patel&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 05:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bseg-select-statement-slow/m-p/11022072#M1898030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-28T05:20:47Z</dc:date>
    </item>
  </channel>
</rss>

