<?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: Standard error in BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461901#M14504</link>
    <description>&lt;P&gt;@Paul - Thank you. &lt;/P&gt;&lt;P&gt;Am using call transaction method only. BDC is not processing at all when error populate in screen level. Because it is mandatory check error.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Mar 2017 08:09:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-03-28T08:09:34Z</dc:date>
    <item>
      <title>Standard error in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461898#M14501</link>
      <description>&lt;P&gt;Am automating the creation of service contract tcode ME31K, I have checked for BAPI or BADI i didnt get so i did in BDC - call transaction method.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When the BDC gets into one screen to next screen. From screen level they have set a check for mandatory field(Standard) so it will give us error "Fill all mandatory fields".&lt;BR /&gt;&lt;BR /&gt;Problem is, when error come's BDC will stop.&lt;BR /&gt;&lt;BR /&gt;To avoid the error and run the BDC successful please suggest some solution.&lt;BR /&gt;&lt;BR /&gt;I have attached error screen.&lt;BR /&gt;&lt;A href="https://answers.sap.com/storage/attachments/26971-bdc-1.jpeg"&gt;bdc-1.jpeg&lt;/A&gt;&lt;BR /&gt;Thanks in Advance,&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;A href="https://www.yammer.com/wipro.com/#/users/1529136058"&gt;Vinu Natarajan&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 07:54:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461898#M14501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-24T07:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Standard error in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461899#M14502</link>
      <description>&lt;P&gt;Supply the mandatory data?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 08:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461899#M14502</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2017-03-24T08:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Standard error in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461900#M14503</link>
      <description>&lt;P&gt;BDC will work the same way how u do manual entries, if its asking u mandatory field to enter through manual, then definitely BDC also going to ask u the same things.&lt;/P&gt;&lt;P&gt;use call Transaction method instead of Session method bec CT will process all the record and at the end of the work it will show u error in BDCMSGCOLL table and u can check the problem later on.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Mar 2017 12:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461900#M14503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-24T12:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Standard error in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461901#M14504</link>
      <description>&lt;P&gt;@Paul - Thank you. &lt;/P&gt;&lt;P&gt;Am using call transaction method only. BDC is not processing at all when error populate in screen level. Because it is mandatory check error.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 08:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461901#M14504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-28T08:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Standard error in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461902#M14505</link>
      <description>&lt;P&gt;To my knowledge, BDC won't be processed further when an error occurs because that particular BDC has ended with error. Consider you have to execute ME31K thrice for 3 items,&lt;/P&gt;&lt;P&gt;loop at the main table which holds the 3 items.&lt;/P&gt;&lt;P&gt;    refresh bdcdata.&lt;/P&gt;&lt;P&gt;    populate BDCdata for 1st item.&lt;/P&gt;&lt;P&gt;   call transaction 'me31k' using bdcdata mode 'a' messages into bdcmsgcoll. (in this case if BDC ended in error for 1st item, error messages will    be in bdcmsgcoll , then it will proceed to process the 2nd item.)&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;Above is the process you need to follow for BDC via call transaction.&lt;/P&gt;&lt;P&gt;This will process the 2nd item though the 1st item went into error because everything is within loop and bdcdata is populated for each item everytime within loop.&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 09:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-error-in-bdc/m-p/461902#M14505</guid>
      <dc:creator>former_member293462</dc:creator>
      <dc:date>2017-03-28T09:34:02Z</dc:date>
    </item>
  </channel>
</rss>

