<?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: QUESTION ON BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710320#M310722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi frnds,&lt;/P&gt;&lt;P&gt;Are u all getting my point.?&lt;/P&gt;&lt;P&gt;plzz clarify.&lt;/P&gt;&lt;P&gt;                                  regards,&lt;/P&gt;&lt;P&gt;                                   sanjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Nov 2006 11:08:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-27T11:08:24Z</dc:date>
    <item>
      <title>QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710313#M310715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats disadvantage of batch input session OVER call tranction method?&lt;/P&gt;&lt;P&gt;Note:Answer shuold be with respect to calltransaction method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 12:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710313#M310715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T12:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710314#M310716</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;   See, Obvious, call transaction is faster, Due to less number of records will be updated and it uses, Asynchronous update for process, And finally errors are thrown into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; There will not be any sesion be created and closed, Directly you can process in back ground, Where as in Session you want to either schedule your section in Sm36. or you want to create jobs, by using FM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;manju.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Helpful, Reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 12:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710314#M310716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T12:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710315#M310717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please do not pose multiple thread for the same topic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please read this thread which has the solution for your doubt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/profile?userid=357671" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/profile?userid=357671&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kathirvel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 12:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710315#M310717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T12:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710316#M310718</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 &amp;#145;Call Transaction&amp;#146;, the transactions are triggered at the time of processing itself and so the ABAP program must do the error handling.  It can also be used for real-time interfaces and custom error handling &amp;amp; logging features. Whereas in &lt;/P&gt;&lt;P&gt;Batch Input Sessions, the ABAP program creates a session with all the transactional data, and this session can be viewed, scheduled and processed (using Transaction SM35) at a later time. The latter technique has a built-in error processing mechanism too.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;difference between batch input and call transaction in BDC&lt;/P&gt;&lt;P&gt;Session method. &lt;/P&gt;&lt;P&gt;1) synchronous processing. &lt;/P&gt;&lt;P&gt;2) can tranfer large amount of data. &lt;/P&gt;&lt;P&gt;3) processing is slower. &lt;/P&gt;&lt;P&gt;4) error log is created &lt;/P&gt;&lt;P&gt;5) data is not updated until session is processed. &lt;/P&gt;&lt;P&gt;Call transaction. &lt;/P&gt;&lt;P&gt;1) asynchronous processing &lt;/P&gt;&lt;P&gt;2) can transfer small amount of data &lt;/P&gt;&lt;P&gt;3) processing is faster. &lt;/P&gt;&lt;P&gt;4) errors need to be handled explicitly &lt;/P&gt;&lt;P&gt;5) data is updated automatically&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 15:18:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710316#M310718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T15:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710317#M310719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi srikant ru sure that call transaction is asynchronous processing&lt;/P&gt;&lt;P&gt;and session is synchronous processing.&lt;/P&gt;&lt;P&gt;i dont think so its just opposite to this.&lt;/P&gt;&lt;P&gt;plzz rectify.&lt;/P&gt;&lt;P&gt;                                                  regards,&lt;/P&gt;&lt;P&gt;                                                    sanjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 08:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710317#M310719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T08:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710318#M310720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Session method. &lt;/P&gt;&lt;P&gt;1) synchronous processing. &lt;/P&gt;&lt;P&gt;2) can tranfer large amount of data. &lt;/P&gt;&lt;P&gt;3) processing is slower. &lt;/P&gt;&lt;P&gt;4) error log is created &lt;/P&gt;&lt;P&gt;5) data is not updated until session is processed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction. &lt;/P&gt;&lt;P&gt;1) asynchronous processing &lt;/P&gt;&lt;P&gt;2) can transfer small amount of data &lt;/P&gt;&lt;P&gt;3) processing is faster. &lt;/P&gt;&lt;P&gt;4) errors need to be handled explicitly &lt;/P&gt;&lt;P&gt;5) data is updated automatically &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Batch Input (BI) programs still use the classical BDC approach but doesn&amp;#146;t require an ABAP program to be written to format the BDCDATA. The user has to format the data using predefined structures and store it in a flat file. The BI program then reads this and invokes the transaction mentioned in the header record of the file.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 10:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710318#M310720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T10:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710319#M310721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Tripathy,&lt;/P&gt;&lt;P&gt;                     Session methosd is having asynchronous processing and call transaction method is having synchronus processing.&lt;/P&gt;&lt;P&gt;session method is having synchronous update and call transaction update methods may be synchronos or may br asynchronous.&lt;/P&gt;&lt;P&gt;plzzz rectify me if i am wrong.&lt;/P&gt;&lt;P&gt;                                                     regards,&lt;/P&gt;&lt;P&gt;                                                      sanjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 10:48:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710319#M310721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T10:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710320#M310722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi frnds,&lt;/P&gt;&lt;P&gt;Are u all getting my point.?&lt;/P&gt;&lt;P&gt;plzz clarify.&lt;/P&gt;&lt;P&gt;                                  regards,&lt;/P&gt;&lt;P&gt;                                   sanjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 11:08:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710320#M310722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T11:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION ON BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710321#M310723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sanjay ur correct&lt;/P&gt;&lt;P&gt;Call Transaction method is synchronous processing and asynchronous or synchronous update &lt;/P&gt;&lt;P&gt;Session method is asynchronous processing and synchronous update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                                            regards,&lt;/P&gt;&lt;P&gt;                                                                                satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2006 12:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-on-bdc/m-p/1710321#M310723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-28T12:17:10Z</dc:date>
    </item>
  </channel>
</rss>

