<?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: what is the difference between call transaction and session method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947636#M943945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sudheer,&lt;/P&gt;&lt;P&gt;well let me tell u in layman's language.i.e simple words....wattever my fellow friends have said about the diffrences about the updation differences in database nd all are all correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but to put it simply....both are the methods to transfer data between two r/3 systems or non r/3 systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in batch input method ....more of coding is required as in u have to use the following function methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_ OPEN, BDC_INSERT and BDC_CLOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its not the case in call transaction ,no need to use these methods,&lt;/P&gt;&lt;P&gt;instead the following is used.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;transaction code&amp;gt;&lt;/P&gt;&lt;P&gt;		USING 	&amp;lt;bdc table&amp;gt;&lt;/P&gt;&lt;P&gt;		OPTION FROM &amp;lt;opt&amp;gt;&lt;/P&gt;&lt;P&gt;	MESSAGES INTO messtab	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so it is more convenient to use call transactions method .no need fr hard coding ......&lt;/P&gt;&lt;P&gt;u can use recording fr the refernce.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this clarifies the doubt to some extent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Jun 12, 2008 7:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2008 05:40:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-04T05:40:42Z</dc:date>
    <item>
      <title>what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947631#M943940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the difference between call transaction and session method&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947631#M943940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947632#M943941</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;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;&lt;/P&gt;&lt;P&gt;check this link for more differences&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tips/ABAP/DiffSessionCALLTRANSC.htm" target="test_blank"&gt;http://www.saptechnical.com/Tips/ABAP/DiffSessionCALLTRANSC.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:13:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947632#M943941</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-06-04T05:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947633#M943942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASSICAL BATCH INPUT (Session Method)&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BATCH INPUT METHOD:&lt;/P&gt;&lt;P&gt;This method is also called as &amp;#145;CLASSICAL METHOD&amp;#146;.&lt;/P&gt;&lt;P&gt;Features:&lt;/P&gt;&lt;P&gt;Asynchronous processing. &lt;/P&gt;&lt;P&gt;Synchronous Processing in database update.&lt;/P&gt;&lt;P&gt;Transfer data for more than one transaction.&lt;/P&gt;&lt;P&gt;Batch input processing log will be generated.&lt;/P&gt;&lt;P&gt;During processing, no transaction is started until the previous transaction has been written to the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION METHOD :&lt;/P&gt;&lt;P&gt;This is another method to transfer data from the legacy system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Features:&lt;/P&gt;&lt;P&gt;Synchronous processing. The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.&lt;/P&gt;&lt;P&gt;Updating the database can be either synchronous or asynchronous. The program specifies the update type.&lt;/P&gt;&lt;P&gt;Transfer data for a single transaction.&lt;/P&gt;&lt;P&gt;Transfers data for a sequence of dialog screens.&lt;/P&gt;&lt;P&gt;No batch input processing log is generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Among the two methods call transaction is better compared to session bcoz data transfer is faster in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arun kumar   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Posts: 632 &lt;/P&gt;&lt;P&gt;Registered: 8/7/06 &lt;/P&gt;&lt;P&gt;Forum Points: 748  &lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   Re: difference between call transaction and session method and which metho   &lt;/P&gt;&lt;P&gt;Posted: May 4, 2007 5:52 AM    in response to: SHASHIDAR MOTOORI       E-mail this message      Reply  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Hi shashidar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Differences between call transaction and session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Session Method:&lt;/P&gt;&lt;P&gt;1) Data is not updated in the database table until the session is processed.&lt;/P&gt;&lt;P&gt;2) No sy-subrc is returned.&lt;/P&gt;&lt;P&gt;3) Error log is created for error records.&lt;/P&gt;&lt;P&gt;4) Updation is always synchronous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call Transaction Method:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Immediate updation in the database table.&lt;/P&gt;&lt;P&gt;2) sy-subrc is returned.&lt;/P&gt;&lt;P&gt;3)Error need to be handled explicitly.&lt;/P&gt;&lt;P&gt;4) updation can be synchronous as well as asynchronous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) ya u can use using the N mode no screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)u can't handle multiple transaction in call transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) u can handle multiple transaction in session using the BDC_INSERT fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)When u go to SM35 u can able to see the error records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which is best?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That depends on your requirement. Both of them have there advantages.&lt;/P&gt;&lt;P&gt;According to the situation u can choose any one of these &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;difference between batch input and call transaction in BDC 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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For session method,these are the function modules to b used.&lt;/P&gt;&lt;P&gt;BDC_OPEN_GROUP&lt;/P&gt;&lt;P&gt;BDC_INSERT&lt;/P&gt;&lt;P&gt;BDC_CLOSE_GROUP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For call transaction,this is the syntax.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION TCODE USING BDCDATA&lt;/P&gt;&lt;P&gt;MODE A or E or N&lt;/P&gt;&lt;P&gt;UPDATE A or S&lt;/P&gt;&lt;P&gt;MESSAGES INTO MESSTAB. &lt;/P&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;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a scenario where we need to post documents in FB01 and the input file has say 2000 records (2000 documents, not line items in FB01 but 2000 records)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the BDC call transaction method&lt;/P&gt;&lt;P&gt;We call the transaction FB01 2000 times (once for each record posting) and if the processing fails in record no 3 it can be captured and start with reocord 4.&lt;/P&gt;&lt;P&gt;Eg: Loop at itab.&lt;/P&gt;&lt;P&gt;call transaction FB01&lt;/P&gt;&lt;P&gt;capture errors&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the session method.&lt;/P&gt;&lt;P&gt;We do not explicity call the transaction 2000 times, but all the records are appeneded into a session and this session is stored. The processinf of the session is done wwhenever the user wants it to be done. Hence the errors cannot be captured in the program itself&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/question-about-bdc-program.htm" target="test_blank"&gt;http://www.sap-img.com/abap/question-about-bdc-program.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/" target="test_blank"&gt;http://www.itcserver.com/blog/2006/06/30/batch-input-vs-call-transaction/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/bdc_main_page.htm" target="test_blank"&gt;http://www.planetsap.com/bdc_main_page.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;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Jun 12, 2008 7:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:14:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947633#M943942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947634#M943943</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;call other application programs using CALL TRANSACTION (type M program) or SUBMIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shruthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:14:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947634#M943943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947635#M943944</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;Call Transaction method:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this method, the ABAP/4 program uses the call transaction &amp;lt;T-code &amp;gt; using &amp;lt;bdc_tab&amp;gt; mode &amp;lt;mode&amp;gt; update &amp;lt;update &amp;gt;  method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In u2018Call Transactionu2019, the transactions are triggered at the time of processing itself and so the ABAP program must do the error handling.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronous Processing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can update the database both synchronously and asynchronously. We can specify the mode in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; No batch input processing log&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; While execution it starts from the first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Faster than session method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classical or session method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n this method, ABAP/4 program read the external data that is to be entered to the SAP system and stores the data in the batch input session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the prgm has finished creating the session, we can run the session thro the TC SM35. This method involves FM like BDC_OPEN,BDC_INSERT,BDC_CLOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whereas in Batch Input Sessions, the ABAP&lt;/P&gt;&lt;P&gt;program creates a session with all the transactional data, and this session can be viewed, scheduled and processed (using&lt;/P&gt;&lt;P&gt;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;Asynchronous Processing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronous Database update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During processing, no transaction is started until the previous transaction has been written to the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Detailed Log will be generated for all the sessions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While executing it wont start from the first. It will start from the place where it ends with error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While executing it wont start from the first. It will start from the place where it ends with error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sankar M&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:16:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947635#M943944</guid>
      <dc:creator>p291102</dc:creator>
      <dc:date>2008-06-04T05:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947636#M943945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sudheer,&lt;/P&gt;&lt;P&gt;well let me tell u in layman's language.i.e simple words....wattever my fellow friends have said about the diffrences about the updation differences in database nd all are all correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but to put it simply....both are the methods to transfer data between two r/3 systems or non r/3 systems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in batch input method ....more of coding is required as in u have to use the following function methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_ OPEN, BDC_INSERT and BDC_CLOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its not the case in call transaction ,no need to use these methods,&lt;/P&gt;&lt;P&gt;instead the following is used.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;transaction code&amp;gt;&lt;/P&gt;&lt;P&gt;		USING 	&amp;lt;bdc table&amp;gt;&lt;/P&gt;&lt;P&gt;		OPTION FROM &amp;lt;opt&amp;gt;&lt;/P&gt;&lt;P&gt;	MESSAGES INTO messtab	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so it is more convenient to use call transactions method .no need fr hard coding ......&lt;/P&gt;&lt;P&gt;u can use recording fr the refernce.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this clarifies the doubt to some extent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Jun 12, 2008 7:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947636#M943945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947637#M943946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i search with term call transaction vs session method i found answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you may want to do same rather than throwing thread on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947637#M943946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947638#M943947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Session method it needs to use FM's like  BDC_OPEN,BDC_INSERT,BDC_CLOSE   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Major features of it are &lt;/P&gt;&lt;P&gt;   synchronous processing. &lt;/P&gt;&lt;P&gt;   error log is created no need to handle errors explicitly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In  Call transaction we the the transcation in a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Major features are :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; asynchronous processing &lt;/P&gt;&lt;P&gt; errors need to be handled explicitly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947638#M943947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947639#M943948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudheer rao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diff b/w Call Transaction and Session Methods are...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Call Transation&lt;/STRONG&gt;                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Log will not be generated              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Error log handled explicity.            &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Always used for low volume of Data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) Both Synchronous/Asynchronous execute always in  &lt;/P&gt;&lt;P&gt;    Background    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) Processing in Fast                      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6) Data is updated automatically.     &lt;/P&gt;&lt;P&gt;                                                     &lt;/P&gt;&lt;P&gt;7) Legacy System Data                   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Session Method&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Log will be generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Error log created automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Large volume of Data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) Asynchronous both in Foreground and Background&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) Processing in Slow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6) Data is not updated until session is proceed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7) Master Data uploading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S.Suresh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Jun 12, 2008 4:25 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 11:37:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-method/m-p/3947639#M943948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T11:37:34Z</dc:date>
    </item>
  </channel>
</rss>

