<?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: differences between session and call transaction methods in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563812#M254863</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;just to add a bit to above responses, in session method, no sy-subrc is returned due to the basic characteristic of session method. 'Call transaction' always returns &lt;/P&gt;&lt;P&gt;Sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;VINNY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Sep 2006 08:45:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-08T08:45:48Z</dc:date>
    <item>
      <title>differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563805#M254856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;differences between session and call transaction methods&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 07:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563805#M254856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T07:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563806#M254857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call transaction is Asynchronous method  and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;session method is synchronous&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 07:11:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563806#M254857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T07:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563807#M254858</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;Session method is to populate the data by filling BDC structure and keep as session to process from SM37 to post in appropriate Transaction.&lt;/P&gt;&lt;P&gt;Call transaction method is to post the data directly into the Transaction from an Executable program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Session method SAP defined Function modules.&lt;/P&gt;&lt;P&gt;U can see more help on the differences in the SAP help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 07:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563807#M254858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T07:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563808#M254859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;session -  batch input.&lt;/P&gt;&lt;P&gt;log will be available.&lt;/P&gt;&lt;P&gt;data will be buffered in client machine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction - single entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for any clarifiaction pls mail me.&lt;/P&gt;&lt;P&gt;pls reward points, if this helped u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anversha.&lt;/P&gt;&lt;P&gt;anversha.shahul@wipro.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 07:14:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563808#M254859</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-08T07:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563809#M254860</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 is used when the volume of data is limited...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the volume of data is very large, then session method comes handy...as the screens are populated with all the data and the session is created, which can be processed in the night, when the load on server is less...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 07:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563809#M254860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T07:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563810#M254861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are the different function modules we use in both of them&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 07:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563810#M254861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T07:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563811#M254862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 07:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563811#M254862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T07:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: differences between session and call transaction methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563812#M254863</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;just to add a bit to above responses, in session method, no sy-subrc is returned due to the basic characteristic of session method. 'Call transaction' always returns &lt;/P&gt;&lt;P&gt;Sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;VINNY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 08:45:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-session-and-call-transaction-methods/m-p/1563812#M254863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T08:45:48Z</dc:date>
    </item>
  </channel>
</rss>

