<?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 Cancelled Material Document Nos in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813979#M917335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;from MSEG table i want to pick up MBLNR having movement type 101...but at the same time these MBLNR's should not be cancelled with 102.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short how can i pick up uncancelled MBLNR from MSEG with movement type 101 .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 May 2008 09:56:24 GMT</pubDate>
    <dc:creator>rahul2000</dc:creator>
    <dc:date>2008-05-14T09:56:24Z</dc:date>
    <item>
      <title>Cancelled Material Document Nos</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813979#M917335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;from MSEG table i want to pick up MBLNR having movement type 101...but at the same time these MBLNR's should not be cancelled with 102.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short how can i pick up uncancelled MBLNR from MSEG with movement type 101 .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 09:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813979#M917335</guid>
      <dc:creator>rahul2000</dc:creator>
      <dc:date>2008-05-14T09:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Cancelled Material Document Nos</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813980#M917336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt; Try the below select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mesg into table IT_MESG&lt;/P&gt;&lt;P&gt;where BWART in IT_BWART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where IT_MBLNR is an internal table with type of lvc_t_rngs (range internal table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: IT_BWART type LVC_T_RNGS,&lt;/P&gt;&lt;P&gt;        WA_BWART TYPE LVC_S_RNGS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_BWART-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_BWART-sign    = 'I'.&lt;/P&gt;&lt;P&gt;wa_BWART-low     = '101'.&lt;/P&gt;&lt;P&gt;append wa_BWART into IT_BWART.&lt;/P&gt;&lt;P&gt;clear wa_BWART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_BWART-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_BWART-sign    = 'E'.&lt;/P&gt;&lt;P&gt;wa_BWART-low     = '102'.&lt;/P&gt;&lt;P&gt;append wa_BWART into IT_BWART.&lt;/P&gt;&lt;P&gt;clear wa_BWART.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reward if it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads,&lt;/P&gt;&lt;P&gt;Boobalan Suburaj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Boobalan Suburaj on May 14, 2008 1:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 10:05:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813980#M917336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T10:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Cancelled Material Document Nos</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813981#M917337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF u want to select only those documents having movement type 101 and these documents should are not reversed with movement type 102 .&lt;/P&gt;&lt;P&gt;Then u can select those documents having field SMBLN as initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select mblnr from mseg where bwart eq '101'  and smbln is&lt;/P&gt;&lt;P&gt;initial.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 10:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813981#M917337</guid>
      <dc:creator>rvinod1982</dc:creator>
      <dc:date>2008-05-14T10:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cancelled Material Document Nos</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813982#M917338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vonod..&lt;/P&gt;&lt;P&gt;still dosent serve the purpose&lt;/P&gt;&lt;P&gt;SMBLN is intial for a 101 document even though it has been cancelled&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 10:21:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cancelled-material-document-nos/m-p/3813982#M917338</guid>
      <dc:creator>rahul2000</dc:creator>
      <dc:date>2008-05-14T10:21:08Z</dc:date>
    </item>
  </channel>
</rss>

