<?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 aboutbdc in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591190#M266027</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;higurus,&lt;/P&gt;&lt;P&gt;while iam processing BDC session system is crashed iwant toknow howmanyrecords have successfully uploaded. how about doing it.how to resehedule the failed ones.&lt;/P&gt;&lt;P&gt;does call transaction methos returns SY-subrc orsession method returns explain.&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;Due points will begiven.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 Sep 2006 13:32:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-30T13:32:20Z</dc:date>
    <item>
      <title>aboutbdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591190#M266027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;higurus,&lt;/P&gt;&lt;P&gt;while iam processing BDC session system is crashed iwant toknow howmanyrecords have successfully uploaded. how about doing it.how to resehedule the failed ones.&lt;/P&gt;&lt;P&gt;does call transaction methos returns SY-subrc orsession method returns explain.&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;Due points will begiven.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Sep 2006 13:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591190#M266027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-30T13:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: aboutbdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591191#M266028</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;Whenever you are using BDC's. You can use two methods Call transaction or session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use call transaction you write statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction 'VA01' messages in messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table messtab contains all the messages encountered during the processing of this particular transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use session method then in SM35 tcode, you can see the log for each and every session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way you can keep a track of ur BDC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 08:33:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591191#M266028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-01T08:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: aboutbdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591192#M266029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    In session method you can track the &lt;/P&gt;&lt;P&gt;    processed records by seeing the log in sm35.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 13:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591192#M266029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-01T13:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: aboutbdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591193#M266030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   call transaction method returns sy-subrc value&lt;/P&gt;&lt;P&gt;   but session will not return subrc value.&lt;/P&gt;&lt;P&gt;   error records can &lt;/P&gt;&lt;P&gt;   be again reprocessed in session method using&lt;/P&gt;&lt;P&gt;   session name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Using call transaction If any error occurs you &lt;/P&gt;&lt;P&gt;   can store the recorss in internal table and &lt;/P&gt;&lt;P&gt;   send this records to BDC session by &lt;/P&gt;&lt;P&gt;   calling BDC_open_group,BDC_insert,BDC_close_group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error Analysis and Restart Capability&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unlike batch input methods using sessions, CALL TRANSACTION USING processing does not provide any special handling for incorrect transactions. There is no restart capability for transactions that contain errors or produce update failures. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can handle incorrect transactions by using update mode S (synchronous updating) and checking the return code from CALL TRANSACTION USING. If the return code is anything other than 0, then you should do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write out or save the message table &lt;/P&gt;&lt;P&gt;use the BDCDATA table that you generated for the CALL TRANSACTION USING to generate a batch input session for the faulty transaction. You can then analyze the faulty transaction and correct the error using the tools provided in the batch input management facility. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check link &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/69/c2501a4ba111d189750000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/69/c2501a4ba111d189750000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;   &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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Oct 2006 13:17:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/aboutbdc/m-p/1591193#M266030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-01T13:17:49Z</dc:date>
    </item>
  </channel>
</rss>

