<?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: Movement types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733008#M1300268</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 still need assistance with this question, anyone to assist?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jun 2009 13:53:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-03T13:53:12Z</dc:date>
    <item>
      <title>Movement types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733005#M1300265</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 need to extract from SAP all 551/552 movement types from jan 09 to date that have not been done through the upload process i.e MB10 and MB11 are not on the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please assist with the code to so?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 11:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733005#M1300265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T11:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Movement types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733006#M1300266</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 need to extract from SAP all 551/552 movement types from jan 09 to date that have not been done through the upload process i.e MB10 and MB11 are not on the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use table join between MKPF and MSEG. Provide date as input and movement type as input to the select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. &lt;/P&gt;&lt;P&gt; Select matnr bwart budat ..&lt;/P&gt;&lt;P&gt;           from mseg as a inner join mkpf on a&lt;SUB&gt;MBLNR = b&lt;/SUB&gt;MBLNR&lt;/P&gt;&lt;P&gt;           where ( bwart = 551 or bwart = 552 )&lt;/P&gt;&lt;P&gt;                and budat in s_budat&lt;/P&gt;&lt;P&gt;Hope this will help to solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 11:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733006#M1300266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T11:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Movement types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733007#M1300267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mpangib,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT *
    FROM mbew
    INTO CORRESPONDING FIELDS OF TABLE i_mbew
   WHERE bwkey = &amp;lt;variable&amp;gt;
*       AND bwtar = ' '.   "Valuation Type.

  IF sy-subrc = 0.

    SELECT *
      FROM mseg
      INTO CORRESPONDING FIELDS OF TABLE i_mseg
       FOR ALL ENTRIES IN i_mbew
     WHERE MJAHR = '2009'
*         AND shkzg = 'S'.   "Only Debit Account Will be Picked with 'S'.
          AND bwart BETWEEN '551' and '552'.
*         AND BWTAR = ' '.   "Valuation Type.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suvendu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 11:46:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733007#M1300267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T11:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Movement types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733008#M1300268</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 still need assistance with this question, anyone to assist?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2009 13:53:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/movement-types/m-p/5733008#M1300268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-03T13:53:12Z</dc:date>
    </item>
  </channel>
</rss>

