<?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: Performace issue while fetching data from MSEG table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511706#M1559612</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;1) Don't used the join operation on MSEG table.&lt;/P&gt;&lt;P&gt;2) Read data first from Mara or your zchmatchcode (i.e. you can read data from using &lt;STRONG&gt;join on mara and zchmatchcode&lt;/STRONG&gt; table.)&lt;/P&gt;&lt;P&gt;3) data read in point 2 used to fetch data from Mseg using &lt;STRONG&gt;for all entries&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;4) Check table is not empty before using &lt;STRONG&gt;for all entries&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;5) consodidate as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try above step,  It wil help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Nov 2010 05:17:39 GMT</pubDate>
    <dc:creator>ravi_lanjewar</dc:creator>
    <dc:date>2010-11-18T05:17:39Z</dc:date>
    <item>
      <title>Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511700#M1559606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am supposed to fetch ERFMG values from mseg table corresponding to a particular material.&lt;/P&gt;&lt;P&gt;sum those ERFMG values and display it in a flat file.  Below is the query to fetch the data from mseg.  zchmatchcode is a table which will contain match code and corresponding material nuumbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select mseg~erfmg mseg~mjahr mseg~matnr mseg~werks into*&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;corresponding fields of table itab_mseg&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;from mseg&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;inner join zchmatchcode on mseg&lt;SUB&gt;matnr = zchmatchcode&lt;/SUB&gt;matnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;where mseg~matnr = wa_mara-matnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;and ( mseg&lt;SUB&gt;mjahr = var3 or mseg&lt;/SUB&gt;mjahr = var2 or mseg&lt;SUB&gt;mjahr = var1 or mseg&lt;/SUB&gt;mjahr = var )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;and mseg~werks eq 'CH03'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;and ( mseg~bwart = '301' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '291' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '261' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '262' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '601' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '602' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '633' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '641' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '643' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '644' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '645' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '921' or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                                               &lt;STRONG&gt;mseg~bwart = '933' ).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and below given is the calcuation for adding erfmg values and placing it in the output field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab_mseg.&lt;/P&gt;&lt;P&gt;            if itab_mseg-matnr = wa_mara-matnr.&lt;/P&gt;&lt;P&gt;              if sy-tabix EQ 1.&lt;/P&gt;&lt;P&gt;                v_matnr = itab_mseg-matnr.&lt;/P&gt;&lt;P&gt;                v_year = itab_mseg-mjahr.&lt;/P&gt;&lt;P&gt;              endif.&lt;/P&gt;&lt;P&gt;              if v_matnr = itab_mseg-matnr and v_year = itab_mseg-mjahr.&lt;/P&gt;&lt;P&gt;                sum = sum + itab_mseg-erfmg.&lt;/P&gt;&lt;P&gt;                if v_year EQ var.&lt;/P&gt;&lt;P&gt;                  it_final-MGVBR = sum.&lt;/P&gt;&lt;P&gt;                elseif v_year EQ var1.&lt;/P&gt;&lt;P&gt;                  it_final-MGVBR1 = sum.&lt;/P&gt;&lt;P&gt;                elseif v_year EQ var2.&lt;/P&gt;&lt;P&gt;                  it_final-mgvbr2 = sum.&lt;/P&gt;&lt;P&gt;                elseif v_year EQ var3.&lt;/P&gt;&lt;P&gt;                  it_final-mgvbr3 = sum.&lt;/P&gt;&lt;P&gt;                endif.&lt;/P&gt;&lt;P&gt;              else.&lt;/P&gt;&lt;P&gt;                clear sum.&lt;/P&gt;&lt;P&gt;                v_matnr = itab_mseg-matnr.&lt;/P&gt;&lt;P&gt;                v_year = itab_mseg-mjahr.&lt;/P&gt;&lt;P&gt;                sum = sum + itab_mseg-erfmg.&lt;/P&gt;&lt;P&gt;                if v_year EQ var.&lt;/P&gt;&lt;P&gt;                  it_final-MGVBR = sum.&lt;/P&gt;&lt;P&gt;                elseif v_year EQ var1.&lt;/P&gt;&lt;P&gt;                  it_final-MGVBR1 = sum.&lt;/P&gt;&lt;P&gt;                elseif v_year EQ var2.&lt;/P&gt;&lt;P&gt;                  it_final-mgvbr2 = sum.&lt;/P&gt;&lt;P&gt;                elseif v_year EQ var3.&lt;/P&gt;&lt;P&gt;                  it_final-mgvbr3 = sum.&lt;/P&gt;&lt;P&gt;                endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              endif.&lt;/P&gt;&lt;P&gt;            endif.&lt;/P&gt;&lt;P&gt;          endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the output without any issues.. The problem is .. this is taking a lot of time.  Can someone suggest me a solution for this problem.. If there is a function module to do the above specified process? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also checked in MB51 and the associated Standard program(because similar kind of calculation is happening in that transaction) but I found it difficult to figure it out..  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Awaiting an early solution for my problem :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sriram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 13:24:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511700#M1559606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T13:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511701#M1559607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sriram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try to check how the SELECT statement works using ST05 transaction ? it could help you. As you specifiy MATNR and WERKS into the Where condition an index of MSEG should be used ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't understand why you use the ZCHMATCHCODE  table into your SELECT as you don't seem to use any field from the second table. If you just want to check that material code exists in this second table, you can do it in another way. Maybe the long time is due to the JOIN but I can't help you as it is a specific table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Into your LOOP...ENDLOOP you could use AT NEW to determine a change of material but be carful with your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure you want to add quantity even for 262 or 602 ? These codes reverse 261 and 601 and are usually used to subtract...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 14:20:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511701#M1559607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T14:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511702#M1559608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="green" __jive_macro_name="color"&gt;Moderator message - Welcome to SCN

Please see &lt;SPAN __jive_macro_name="thread" id="1283414"&gt;&lt;/SPAN&gt; before posting in the Performance and Tuning forum

And please do not ask for "early" solutions. Everyone's problem is important.

I see no problems with the code you have posted. Is it called in a LOOP?

Please read [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/Rules&lt;EM&gt;of&lt;/EM&gt;Engagement], &lt;SPAN __jive_macro_name="thread" id="1170968"&gt;&lt;/SPAN&gt; and [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] before posting again.

Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 14:50:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511702#M1559608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T14:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511703#M1559609</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; sorry for adding "early" in my query..  I apologize for that.  That query is not called in a loop.  Here it is taking lot of time to get me the output and I am stuck as in how to proceed further&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sriram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 15:04:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511703#M1559609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T15:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511704#M1559610</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 would certainly check that transaction. I would be glad if you could suggest me how to index as i am not aware of how to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zmatchcode is a table from where the matnrs are fetched into the program(at the start) and matnr from mseg is a foregin key to zmatchcode matnr and it is not allowing me to get ERFMG values if the values are same. that is the reason i used inner join to get the ERFMG even if i dont use that table anywhere else in my query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would try using that AT NEW in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;261 and 601 are movement types right and the query should select ERFMG values for all the movement type specified in the query and that is the requirement given to me &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate your help on this.. thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 15:12:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511704#M1559610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T15:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511705#M1559611</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;  That query is not called in a loop. &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Since there is nothing wrong with the code you have posted, you really have to check how it is being called. It may not be directly called within a loop, but is it in a form that is called from within a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, you have to run a trace (ST05) and/or a runtime analysis (SE30). Please do that and post the results before reponding again to this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 15:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511705#M1559611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T15:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511706#M1559612</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;1) Don't used the join operation on MSEG table.&lt;/P&gt;&lt;P&gt;2) Read data first from Mara or your zchmatchcode (i.e. you can read data from using &lt;STRONG&gt;join on mara and zchmatchcode&lt;/STRONG&gt; table.)&lt;/P&gt;&lt;P&gt;3) data read in point 2 used to fetch data from Mseg using &lt;STRONG&gt;for all entries&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;4) Check table is not empty before using &lt;STRONG&gt;for all entries&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;5) consodidate as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try above step,  It wil help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Nov 2010 05:17:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511706#M1559612</guid>
      <dc:creator>ravi_lanjewar</dc:creator>
      <dc:date>2010-11-18T05:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511707#M1559613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sriram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure there is a index base on matnr in table zchmatchcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and create secondary index for MSEG base on this below field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matnr&lt;/P&gt;&lt;P&gt;mjahr&lt;/P&gt;&lt;P&gt;werks&lt;/P&gt;&lt;P&gt;bwart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can change your where condition to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
and mseg~mjahr in (var3,var2,var1,var)
and mseg~werks eq 'CH03'
and mseg~bwart in ('291','261'.........
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&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;Fernand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Nov 2010 14:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511707#M1559613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-19T14:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511708#M1559614</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;To check the secondary index selected by your query at runtime, you can use ST05/SE30 as suggested by Rob, in addition to this, the query optimizer, at times has problems in selecting a particular index inspite of order of fields in your query, this usually happens when there are too many secondary index created. you can make your query select a particular index, to do this you can code the below code just to check the performance as it is not recomended to use such query with specific index: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select &amp;lt;field names&amp;gt; from mseg &lt;/P&gt;&lt;P&gt;                                 into &amp;lt;internal table&amp;gt; &lt;/P&gt;&lt;P&gt;                                 %_HINTS ORACLE 'INDEX("MSEG" "MSEG~ID3")'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here MSEG is the table name and ID3 is the secondary index name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to this, you can also ask your BASIS admin to check the optimizer settings &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 10:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511708#M1559614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-03T10:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Performace issue while fetching data from MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511709#M1559615</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 check that MSEG index M is active in your system!&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;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2011 10:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-issue-while-fetching-data-from-mseg-table/m-p/7511709#M1559615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-03T10:50:34Z</dc:date>
    </item>
  </channel>
</rss>

