<?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: problem with MSEG table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419191#M1049650</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ... you can create an index in SE11 with fields mandt, matnr, charg and werks ... with this step the select will be better&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 13 Sep 2008 05:36:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-13T05:36:14Z</dc:date>
    <item>
      <title>problem with MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419187#M1049646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used this query &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it_mseg_fi[] is not initial .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; select lifnr matnr menge charg werks&lt;/P&gt;&lt;P&gt; from mseg&lt;/P&gt;&lt;P&gt; into table it_lifnr&lt;/P&gt;&lt;P&gt; for all entries in it_mseg_fi&lt;/P&gt;&lt;P&gt; where matnr = it_mseg_fi-matnr&lt;/P&gt;&lt;P&gt; and charg = it_mseg_fi-charg&lt;/P&gt;&lt;P&gt; and werks = it_mseg_fi-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will take more time to execute in production  . How to solve this performance issue .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Sep 2008 03:29:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419187#M1049646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-13T03:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem with MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419188#M1049647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Veda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the internal table it_mseg_fi[] is having MBLNR and MJAHR include these two fields in the where clause of the select query.Without giving Materila Document Year if you try to access MSEG table obviously it will take time.None of the fields(matnr,charg,werks) in the where clause  of the select statement are primary keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Sep 2008 03:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419188#M1049647</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-09-13T03:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem with MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419189#M1049648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;try out the index .&lt;/P&gt;&lt;P&gt;it will help to increase the performance .....&lt;/P&gt;&lt;P&gt;but do consult your basis consultant before transpoting the ndex to PRD...&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;Thnks &lt;/P&gt;&lt;P&gt;Sahil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Sep 2008 03:50:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419189#M1049648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-13T03:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem with MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419190#M1049649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;pl type &lt;/P&gt;&lt;P&gt; if not it_mseg []  is initial  &lt;/P&gt;&lt;P&gt;insted of   &lt;/P&gt;&lt;P&gt;if it_mseg_fi[] is not initial .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sree&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sreehari polisetti on Sep 13, 2008 7:11 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sreehari polisetti on Sep 13, 2008 7:12 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Sep 2008 05:09:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419190#M1049649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-13T05:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: problem with MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419191#M1049650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ... you can create an index in SE11 with fields mandt, matnr, charg and werks ... with this step the select will be better&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Sep 2008 05:36:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419191#M1049650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-13T05:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: problem with MSEG table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419192#M1049651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear&lt;/P&gt;&lt;P&gt;Mseg is material segment table so you should use it with inner joint with &lt;STRONG&gt;MKPF&lt;/STRONG&gt; table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and select perticular movement for selecting data.&lt;/P&gt;&lt;P&gt;an also remeber there are some auto entry of production so  put &lt;STRONG&gt;xauto = ' '&lt;/STRONG&gt; in select querry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think this is work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;Nayan Lad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Sep 2008 05:55:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-mseg-table/m-p/4419192#M1049651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-13T05:55:28Z</dc:date>
    </item>
  </channel>
</rss>

