<?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 Performance Problems by select VBFA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361795#M1641183</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 try to select some value of table VBFA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    SELECT VBELV FROM VBFA INTO WA_VBFA-VBELV
                WHERE VBELN   = VBRK-VBELN
                  AND VBTYP_V IN ('C', 'K', 'L').
*
      COLLECT WA_VBFA INTO IT_VBFA.
*
    ENDSELECT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it take a long time (VBFA = 80000 entries). has anyone an idea to read faster?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Dec 2011 15:27:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-12-01T15:27:58Z</dc:date>
    <item>
      <title>Performance Problems by select VBFA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361795#M1641183</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 try to select some value of table VBFA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    SELECT VBELV FROM VBFA INTO WA_VBFA-VBELV
                WHERE VBELN   = VBRK-VBELN
                  AND VBTYP_V IN ('C', 'K', 'L').
*
      COLLECT WA_VBFA INTO IT_VBFA.
*
    ENDSELECT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it take a long time (VBFA = 80000 entries). has anyone an idea to read faster?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 15:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361795#M1641183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-01T15:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems by select VBFA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361796#M1641184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, you're going to the wrong table and not using an index. Rather than using the subsequent document to get the preceding document, you should go to whichever table holds the subsequent document (LIPS for deliveries say). It will refer back to the preceding document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Dec 1, 2011 10:35 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 15:33:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361796#M1641184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-01T15:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems by select VBFA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361797#M1641185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's all explained in SAP note 185530 (see 4a for your particular problem), I suggest you have a look and avoid any SD-related performance problems in the future. Similar notes are available for other modules, I believe.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 16:10:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361797#M1641185</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-12-01T16:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problems by select VBFA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361798#M1641186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer, i use VBRP to get the informations i need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The perfomance is now OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 07:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problems-by-select-vbfa/m-p/8361798#M1641186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-02T07:45:38Z</dc:date>
    </item>
  </channel>
</rss>

