<?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: Performance --- BSID table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498279#M1257805</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vin,&lt;/P&gt;&lt;P&gt;try this FM&lt;/P&gt;&lt;P&gt;FM_READ_BSID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Apr 2009 07:21:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-30T07:21:14Z</dc:date>
    <item>
      <title>Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498275#M1257801</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 am creating a data fix program for BSID database table, where my selection screen parameter are &lt;/P&gt;&lt;P&gt;    BUKRS (Company Code)&lt;/P&gt;&lt;P&gt;    BELNR (Document Number)&lt;/P&gt;&lt;P&gt;    BLART (Document Type)&lt;/P&gt;&lt;P&gt;    ZLSCH (Payment Method)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    using these selection screen parameter I am fetching entries from database table BSID...&lt;/P&gt;&lt;P&gt;   However its taking lot of time to fetch data....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Is there any alternative approach.....other than creating Indexes..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 06:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498275#M1257801</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-04-30T06:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498276#M1257802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you mentioned that you have laready tried using secondary index with the selection paramters , now it depends on the number of entries for this selection group.&lt;/P&gt;&lt;P&gt;May you can tyr using CURSOR with package size say 50000.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 06:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498276#M1257802</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-04-30T06:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498277#M1257803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u write ur query , how  r u  fetching the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 06:57:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498277#M1257803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-30T06:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498278#M1257804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT  bukrs&lt;/P&gt;&lt;P&gt;          kunnr&lt;/P&gt;&lt;P&gt;          gjahr&lt;/P&gt;&lt;P&gt;          belnr&lt;/P&gt;&lt;P&gt;          buzei&lt;/P&gt;&lt;P&gt;          zfbdt&lt;/P&gt;&lt;P&gt;          zbd1t&lt;/P&gt;&lt;P&gt;          zlsch&lt;/P&gt;&lt;P&gt;          zlspr&lt;/P&gt;&lt;P&gt;          FROM bsid&lt;/P&gt;&lt;P&gt;          INTO TABLE gt_bsid&lt;/P&gt;&lt;P&gt;          WHERE bukrs  EQ p_code                 "A&lt;/P&gt;&lt;P&gt;          AND   belnr  IN so_belnr&lt;/P&gt;&lt;P&gt;          AND   blart  IN so_blart&lt;/P&gt;&lt;P&gt;          AND   zlsch  IN so_zlsch.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 07:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498278#M1257804</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-04-30T07:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498279#M1257805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vin,&lt;/P&gt;&lt;P&gt;try this FM&lt;/P&gt;&lt;P&gt;FM_READ_BSID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 07:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498279#M1257805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-30T07:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498280#M1257806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Amit....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unable to find such a function module.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 07:26:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498280#M1257806</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-04-30T07:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498281#M1257807</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;for fetches with BUKRS and BELNR you should use Table BKPF first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Walter Habich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 07:45:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498281#M1257807</guid>
      <dc:creator>former_member435013</dc:creator>
      <dc:date>2009-04-30T07:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498282#M1257808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Walter, even if I use BKPF database table it will not solve my problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is that I have to fetch all the documents which are entered in the selection screen parameter and update a particular field......&lt;/P&gt;&lt;P&gt;Its when fetching it takes lot of time...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 07:55:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498282#M1257808</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-04-30T07:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498283#M1257809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm...&lt;/P&gt;&lt;P&gt;few options you may try:&lt;/P&gt;&lt;P&gt;1. create secondary index if possible.&lt;/P&gt;&lt;P&gt;2. Create a FM and write this select in that , call this FM in background task and within teh FM use CURSORs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 07:58:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498283#M1257809</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-04-30T07:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498284#M1257810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is going to be a very expensive SELECT b'coz w/o the "Fiscal Year" in the selection-screen (BSID-GJAHR) you are trying to fetch all the Vendor "Open Items" from "Ad infinitum".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this what you want functionally? Or, can you restrict the selection by adding "Fiscal Year" in the selection-screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 08:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498284#M1257810</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-04-30T08:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498285#M1257811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suhas.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the select statement by adding 'Fiscal year'....however the performance is more or less the same...&lt;/P&gt;&lt;P&gt;Alternatively....when I select data using KUNNR...the result is very fast.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 08:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498285#M1257811</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-04-30T08:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498286#M1257812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i were in your position i will like to have the following params as MANDATORY in the selestion-screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Comp. Code: BSID-BUKRS,&lt;/P&gt;&lt;P&gt;Customer: BSID-KUNNR,&lt;/P&gt;&lt;P&gt;Fiscal Year: BSID-GJAHR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rest other fields are "good to have" &amp;amp; can be used based on your funstionality. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 08:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498286#M1257812</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-04-30T08:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498287#M1257813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suhas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already suggested the Business to replace the selection screen parameter (BELNR) with KUNNR....So that everything goes smoothly....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the Reply....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 08:20:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498287#M1257813</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-04-30T08:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498288#M1257814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will suggest have "Fiscal Year" in the selection-screen as well. It will reduce the "selection" times as well &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 08:22:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498288#M1257814</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-04-30T08:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498289#M1257815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Selection Screen parameter has been changed! hurray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 11:33:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498289#M1257815</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-05-12T11:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Performance --- BSID table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498290#M1257816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;     I am creating a data fix program for BSID database table, where my selection screen parameter are&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;A data fix program for BSID??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 13:43:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-bsid-table/m-p/5498290#M1257816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T13:43:11Z</dc:date>
    </item>
  </channel>
</rss>

