<?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: Table For TCode MC.9 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776398#M1119258</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;s031, s032, s039, s034, s035, s094, mbew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Nov 2008 05:38:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-04T05:38:19Z</dc:date>
    <item>
      <title>Table For TCode MC.9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776395#M1119255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     for particular Period (i.e.03.2008) i m running report from MC.9, from which database table i can get the same data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 05:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776395#M1119255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T05:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Table For TCode MC.9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776396#M1119256</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 Table MSEG and BSIM...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---Fetching Record from MSEG
  SELECT   a~mblnr
           a~zeile
           b~budat
           a~mjahr
           a~werks
           a~bwart
           a~matnr
           a~menge
           a~meins
           a~dmbtr
           a~shkzg
           c~mtart
           c~matkl
           a~bwtar
           a~sobkz
           a~mat_pspnr
           d~maktx
           INTO CORRESPONDING FIELDS OF TABLE it_mseg
           FROM mseg AS a INNER JOIN mkpf AS b
           ON  a~mblnr = b~mblnr
           AND a~mjahr = b~mjahr
           AND b~budat LE last_date
           INNER JOIN mara AS c
           ON  a~matnr = c~matnr
           INNER JOIN makt AS d
           ON a~matnr = d~matnr
           WHERE a~matnr IN s_matnr
           AND   a~werks IN s_werks
           AND   a~bwart IN s_bwart
           AND   a~lgort NE space
           AND   a~sobkz IN s_sobkz
           AND   a~mat_pspnr IN s_wbs
           AND   c~mtart IN s_mtart
           AND   c~matkl IN s_matkl
           .
    SELECT   a~belnr AS mblnr
             a~buzei AS zeile
             a~budat
             a~gjahr AS mjahr
             a~bwkey AS werks
             a~matnr
             a~meins
             a~dmbtr
             a~shkzg
             b~mtart
             b~matkl
             a~bwtar
             c~maktx
             APPENDING CORRESPONDING FIELDS OF TABLE it_mseg
             FROM bsim AS a INNER JOIN mara AS b
             ON a~matnr = b~matnr
             INNER JOIN makt AS c
             ON a~matnr = c~matnr
             WHERE a~matnr IN s_matnr
             AND   a~bwkey IN s_werks
             AND   a~budat LE last_date
             AND   a~blart IN ('R1','R2','R3','R4','R5','R6')
             AND   b~mtart IN s_mtart
             AND   b~matkl IN s_matkl
             .

consider the values of SHKZG is S then DMBTR and MENGE is +ve and if H then DMBTR and MENGE is -ve
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sukriti Saha on Nov 4, 2008 11:05 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 05:35:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776396#M1119256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T05:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Table For TCode MC.9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776397#M1119257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check in this report - RMCB0300 you can find.&lt;/P&gt;&lt;P&gt;Click on where used-list in the application tool bar(Ctrl&lt;EM&gt;shift&lt;/EM&gt;F5) and &lt;/P&gt;&lt;P&gt;expand the dictionary structure you can get all the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;VEnk@&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Venkat Reddy on Nov 4, 2008 11:08 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 05:37:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776397#M1119257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T05:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Table For TCode MC.9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776398#M1119258</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;s031, s032, s039, s034, s035, s094, mbew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 05:38:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776398#M1119258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T05:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Table For TCode MC.9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776399#M1119259</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;Tables might be S031/S039.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 05:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776399#M1119259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T05:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Table For TCode MC.9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776400#M1119260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i m using MARDH and MCHBH Table But Not Getting Correct Figure as like MC.9 ,but the stock is not tallying&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 04:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-for-tcode-mc-9/m-p/4776400#M1119260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T04:37:39Z</dc:date>
    </item>
  </channel>
</rss>

