<?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: BDC error for MM02 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091018#M1358755</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Execution in BDC session&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Sep 2009 12:56:56 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2009-09-07T12:56:56Z</dc:date>
    <item>
      <title>BDC error for MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091017#M1358754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The BDC that I have created for the transaction MM02, stops for some records while for some records it runs perfectly fine. When I give the mode as 'E' or 'A' the BDC is stopped for the status message - "Reorder point considered only with reorder point or time-phased planning", which is not an error. If we press an Enter manually(without changing anything) then the transaction executes successfully. But when mode 'N' is given then the BDC skips the record and move ahead with next record. Also no error or status message is captured.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 12:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091017#M1358754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-07T12:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: BDC error for MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091018#M1358755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Execution in BDC session&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 12:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091018#M1358755</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-09-07T12:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: BDC error for MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091019#M1358756</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;Background mode 'N' skipps all information &amp;amp; status messages and continues the processing. You may capture the messages in the internal table  using below syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data t_err_msgs        TYPE STANDARD TABLE OF bdcmsgcoll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION   'MM02'&lt;/P&gt;&lt;P&gt;                     USING t_bdctab " BDC data&lt;/P&gt;&lt;P&gt;                     MODE  'N'&lt;/P&gt;&lt;P&gt;                     UPDATE 'S'&lt;/P&gt;&lt;P&gt;                     MESSAGES INTO t_err_msgs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds, &lt;/P&gt;&lt;P&gt;Rajneesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 04:14:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091019#M1358756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T04:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: BDC error for MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091020#M1358757</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;In BDC call transaction you have to explicitly handle the error handling&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'MM02' using bdcdata&lt;/P&gt;&lt;P&gt;                        mode gc_mode&lt;/P&gt;&lt;P&gt;                        messages into messtab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        loop at messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          call function 'MESSAGE_TEXT_BUILD'&lt;/P&gt;&lt;P&gt;            exporting&lt;/P&gt;&lt;P&gt;              msgid               = messtab-msgid&lt;/P&gt;&lt;P&gt;              msgnr               = messtab-msgnr&lt;/P&gt;&lt;P&gt;              msgv1               = messtab-msgv1&lt;/P&gt;&lt;P&gt;              msgv2               = messtab-msgv2&lt;/P&gt;&lt;P&gt;              msgv3               = messtab-msgv3&lt;/P&gt;&lt;P&gt;              msgv4               = messtab-msgv4&lt;/P&gt;&lt;P&gt;            importing&lt;/P&gt;&lt;P&gt;              message_text_output = gc_msgtxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; gc_msgtxt .&lt;/P&gt;&lt;P&gt;        endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above code will give you the output (success or failure) and also reason for the same for every material in BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 05:58:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091020#M1358757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T05:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: BDC error for MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091021#M1358758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have also faced this problem in maintaining output types for sales order through BDC......&lt;/P&gt;&lt;P&gt;It will stop when you execute in Mode E or A. as Mode E is to display errors ... errors does not means that it will be in Red... sometime BDC requires input for certain fields for like warning messages....that need to skipped....&lt;/P&gt;&lt;P&gt;The BDC program stops whenever there is a intereption from the normal recording process..... specifically in mode E and A....&lt;/P&gt;&lt;P&gt;But in mode N i.e no error mode... it only captures the error messages... of E type those which come as Red lined...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 03:33:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091021#M1358758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T03:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC error for MM02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091022#M1358759</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;To handle this type of situation, first we need to know what is the reason to display the message '"Reorder point considered only with reorder point or time-phased planning".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you have to add an additional logic in your BDC Code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the situation arrived,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if Mes = 0.&lt;/P&gt;&lt;P&gt;  perform bdc_field  using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                 '/00'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: System will add a error message only if you get any warning or error messages while executing the transaction.&lt;/P&gt;&lt;P&gt;until you dont get error message, system treats that the transaction is executed successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Sep 2009 20:33:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-error-for-mm02/m-p/6091022#M1358759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-12T20:33:53Z</dc:date>
    </item>
  </channel>
</rss>

