<?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 input 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-input-method/m-p/2056630#M424671</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;Look at &amp;lt;a href="http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm"&amp;gt;Difference Between Batch Input and Call Transaction in BDC&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 18 Mar 2007 08:09:22 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2007-03-18T08:09:22Z</dc:date>
    <item>
      <title>what is the difference between call transaction and session input method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056629#M424670</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 input method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 06:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056629#M424670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-18T06:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session input method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056630#M424671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;Look at &amp;lt;a href="http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm"&amp;gt;Difference Between Batch Input and Call Transaction in BDC&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 08:09:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056630#M424671</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-03-18T08:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session input method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056631#M424672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nagaraju,&lt;/P&gt;&lt;P&gt; Here the differences betrween session and call transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;session method                                                              &lt;/P&gt;&lt;P&gt;1) asynchronous process&lt;/P&gt;&lt;P&gt;2)synchronous update&lt;/P&gt;&lt;P&gt;3)multiple transactions can be handled (Menas u can upload the data at a time formore than one t-code)&lt;/P&gt;&lt;P&gt;4)huge amount of data can be uploaded.&lt;/P&gt;&lt;P&gt;5)implicit error handling (Menas for errors SM35)&lt;/P&gt;&lt;P&gt;6)execute the session on a specific date. (by using hold date parameter)&lt;/P&gt;&lt;P&gt;7) Time requirement is more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction:&lt;/P&gt;&lt;P&gt;1)asynchronous process&lt;/P&gt;&lt;P&gt;2)asynchronous /synchronous update&lt;/P&gt;&lt;P&gt;3) single transaction only handled&lt;/P&gt;&lt;P&gt;4)small amount of data uplaoded&lt;/P&gt;&lt;P&gt;5)explicit error handling (Menas all the error records move to internal table and validate)&lt;/P&gt;&lt;P&gt;6) Time requirement is low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 04:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056631#M424672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T04:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session input method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056632#M424673</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;BDC:&lt;/P&gt;&lt;P&gt;Batch Data Communication (BDC) is the process of transferring data from one SAP System to another SAP system or from a non-SAP system to SAP System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Features :&lt;/P&gt;&lt;P&gt;BDC is an automatic procedure.&lt;/P&gt;&lt;P&gt;This method is used to transfer large amount of data that is available in electronic medium.&lt;/P&gt;&lt;P&gt;BDC can be used primarily when installing the SAP system and when transferring data from a legacy system (external system).&lt;/P&gt;&lt;P&gt;BDC uses normal transaction codes to transfer data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types of BDC :&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;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;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 04:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056632#M424673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T04:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: what is the difference between call transaction and session input method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056633#M424674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hi Nagaraju ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction and session method - I am explaining each one by taking one example .&lt;/P&gt;&lt;P&gt;eg uploading customer master data -Tcode Xd01 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Session method --- in coding part after recording we hav to call three function module - BDC_OPEN_GROUP &lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;             BDC_INSERT &lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;             BDC_CLOSE_GROUP &lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the transaction code in FM  Bdc_insert .&lt;/P&gt;&lt;P&gt;   Define - Group and keep ( for keeping the session in SM 35 after processing )&lt;/P&gt;&lt;P&gt;And define the suroutine --- FORM BDC_DYNPRO      USING '.. '  ' ... '.&lt;/P&gt;&lt;P&gt;                          FORM BDC_FIELD    USING    ' ..'     ' ..'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Call transaction - Define one itab for Handlin the error .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call Transaction 'tcode' using BDCDATA mode '.. ' update ' ..'  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Theortically you can read all the points that you got in above replies ..&lt;/P&gt;&lt;P&gt;If you hav any doubt fire the question .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Narender B .&lt;/P&gt;&lt;P&gt;Rewards if helpfull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 04:58:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-difference-between-call-transaction-and-session-input-method/m-p/2056633#M424674</guid>
      <dc:creator>naren112</dc:creator>
      <dc:date>2007-03-20T04:58:53Z</dc:date>
    </item>
  </channel>
</rss>

