<?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: check table XMDVW in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127240#M446782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;    it was not triggering from any custom code, checked in all exits....and ferry,&lt;/P&gt;&lt;P&gt;not able to read much into that fm..the condition gets satisfied and the error triggers..anyway thanks for the efforts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathish. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Apr 2007 18:23:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-11T18:23:55Z</dc:date>
    <item>
      <title>check table XMDVW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127237#M446779</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;    when cancelling a material document in MBST, i get this following error:&lt;/P&gt;&lt;P&gt; CHECK TABLE XMDVW : ENTRY 100890 1000 DOES NOT EXIST...no clue as to what this is and there is no table or structure with the name xmdvw, but there is a structure mdvw...any light on this would be highly appreciated...thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathish. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 17:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127237#M446779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T17:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: check table XMDVW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127238#M446780</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;Check if you have any custom code written here.  XMDVW is an internal table. It is defined like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF XMDVW OCCURS 0.
      INCLUDE STRUCTURE MDVW.
DATA: END OF XMDVW.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might be in some custom code, it is creating a entry in this internal table XMDVW and down the line you are getting this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check for any custom code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 17:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127238#M446780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T17:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: check table XMDVW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127239#M446781</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;The error is happaned after calling FM ME_READ_COMP_GOODS_RECEIPT &lt;/P&gt;&lt;P&gt;in include program MM07MFB1_BELEG_ERGAENZEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
...

  CALL FUNCTION 'ME_READ_COMP_GOODS_RECEIPT'
    EXPORTING
      aktwe         = mseg-erfmg
      ebeln         = mseg-ebeln
      ebelp         = mseg-ebelp
      lfbnr         = mseg-lfbnr
      lfgja         = mseg-lfbja
      lfpos         = mseg-lfpos
      shkzg         = l_shkzg              "376724
      sumwe         = wemng
      kzbew         = t158-kzbew           "514954
    TABLES
      t_bbefu       = xmdvw
    EXCEPTIONS
      not_found_any = 01
      not_found_one = 02
      not_valid_any = 03
      not_valid_one = 04.
  
  IF NOT sy-subrc IS INITIAL.
    MESSAGE e001 WITH 'MDVW' sy-subrc.
  ENDIF.

  LOOP AT xmdvw WHERE matnr = mseg-matnr
                AND   werks = mseg-werks.
                dm07m-bdmng = xmdvw-bdmng.
                dm07m-wamng = xmdvw-wamng.
                dm07m-wawrt = xmdvw-wawrt.
    EXIT.
  ENDLOOP.
  
  IF NOT sy-subrc IS INITIAL.
    MESSAGE e001 WITH 'XMDVW' mseg-matnr mseg-werks.  " &amp;lt; ---- Here is the error
  ENDIF.

...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please place break point at above FM and step through it to find out the root cause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 17:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127239#M446781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T17:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: check table XMDVW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127240#M446782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;    it was not triggering from any custom code, checked in all exits....and ferry,&lt;/P&gt;&lt;P&gt;not able to read much into that fm..the condition gets satisfied and the error triggers..anyway thanks for the efforts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathish. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 18:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-table-xmdvw/m-p/2127240#M446782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T18:23:55Z</dc:date>
    </item>
  </channel>
</rss>

