<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367284#M524246</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are passing one entry at a time from the file to CALL TRANSACTION then all the entries will get processed except those which are errored out.&lt;/P&gt;&lt;P&gt;And as shown in the code above they will be in the it_error table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 22:50:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-05T22:50:25Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367279#M524241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; is there a way in BDC call transaction where we can go ahead even if some records error out and to capture those records with the same structure as in input file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;kranthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 20:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367279#M524241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T20:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367280#M524242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranthi,&lt;/P&gt;&lt;P&gt; Yes, you can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_records.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BUild bdcdata structures...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call transaction '&amp;lt;TCODE&amp;gt;' using it_bdcdata ......&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;move-corresponding it_records to it_errors.&lt;/P&gt;&lt;P&gt;append it_errors.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;use the functionl function 'GUI_DOWNLOAD' to download it_errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 21:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367280#M524242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T21:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367281#M524243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do it like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;tcode&amp;gt;' USING batch_bdc MODE b_mode UPDATE 'S'&lt;/P&gt;&lt;P&gt;    MESSAGES INTO tbl_msg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in tbl_msg you will get all the info returned by the tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop on it&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;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 21:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367281#M524243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T21:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367282#M524244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Appreciate your response.&lt;/P&gt;&lt;P&gt;apart from getting those error rec's, will the other records get saved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kranthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 22:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367282#M524244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T22:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367283#M524245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A BDC is like running a standard transaction and if you run any standard transaction then even if one record that you are entering is incorrect , it doesnt allow you to save the transaction. In a similar manner , if your BDC goes into error , you will have to correct your input file and then re-run the transaction so as to save the data in SAP. &lt;/P&gt;&lt;P&gt;That is the reason we output all the error messages into the bdcmsgcoll table so as to know where and why did the data go into error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes we give a 'test run' option on the selection-screen to the client so that before he runs the actual BDC to save the data into SAP , he can do a test run to find out if the data he is sending is all correct. If at all there is any error , that will be rectified first and then the actual BDC will be run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps .&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Shivika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 22:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367283#M524245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T22:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367284#M524246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are passing one entry at a time from the file to CALL TRANSACTION then all the entries will get processed except those which are errored out.&lt;/P&gt;&lt;P&gt;And as shown in the code above they will be in the it_error table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 22:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2367284#M524246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T22:50:25Z</dc:date>
    </item>
  </channel>
</rss>

