<?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: data selecting from mcha poor performance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101473#M1360451</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok,&lt;/P&gt;&lt;P&gt;but what should i do????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 Aug 2009 12:06:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-29T12:06:26Z</dc:date>
    <item>
      <title>data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101471#M1360449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to improve the performance of below query,&lt;/P&gt;&lt;P&gt;while i have create index on charg(batch number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT MATNR CHARG FROM mcha
           APPENDING TABLE itab
           WHERE charg IN s_charg .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 11:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101471#M1360449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T11:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101472#M1360450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the need of creating index on it? it already is a primary key&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 11:44:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101472#M1360450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T11:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101473#M1360451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok,&lt;/P&gt;&lt;P&gt;but what should i do????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 12:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101473#M1360451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T12:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101474#M1360452</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;Try to use all the possible primary key fields in the select where condition. The performance would increase considerably.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 12:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101474#M1360452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T12:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101475#M1360453</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;the index is used only if the index fields are supplied in the where condition, i.e. the index of MCHA has MATNR WERKS CHARG. If MATNR is not supplied, the index will never be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really have no other way (I think you can retrieve the material numbers by analyzing certain movement types of material movements in MKPF and MSEG), then you may create an index on MCHA-CHARG. But you should be aware that this may decrease the performance of many logistics modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to analyze the requirement in business terms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 14:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101475#M1360453</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-08-29T14:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101476#M1360454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no response long time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Sep 2009 07:24:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101476#M1360454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-05T07:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101477#M1360455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tomar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can go for dynamic selection...with this u can possibly send atleast 2-3 or as many input values and pass it on to select stmt...performance can reduce a little bit....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vamshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Sep 2009 11:08:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101477#M1360455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-05T11:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: data selecting from mcha poor performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101478#M1360456</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;BWTAR is then index field in this table . try to this field in where condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jitendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Sep 2009 11:40:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-selecting-from-mcha-poor-performance/m-p/6101478#M1360456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-05T11:40:40Z</dc:date>
    </item>
  </channel>
</rss>

