<?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: BDC session method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754838#M327155</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sonal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you will have restrict yourself to the CALL TRANSACTION method which will give you immediate results and you can do your further transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC session method will not execute the trasaction immediately and it's not meant to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Nov 2006 13:46:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-29T13:46:38Z</dc:date>
    <item>
      <title>BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754832#M327149</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 BDC session method can we use &amp;lt;u&amp;gt;messtab&amp;lt;/u&amp;gt; for getting the messages in the transaction as in BDC call transaction method.&lt;/P&gt;&lt;P&gt;In my case i want to do something like below through &amp;lt;u&amp;gt;BDC session method&amp;lt;/u&amp;gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'O3A1' USING bdctab&lt;/P&gt;&lt;P&gt;                            MODE 'E'&lt;/P&gt;&lt;P&gt;                            UPDATE 'L'&lt;/P&gt;&lt;P&gt;                            MESSAGES INTO messtab    .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM MESSAGE1.&lt;/P&gt;&lt;P&gt;PERFORM NEXT_TRANS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM MESSAGE1.&lt;/P&gt;&lt;P&gt;LOOP AT messtab.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE * FROM T100 WHERE SPRSL = MESSTAB-MSGSPRA&lt;/P&gt;&lt;P&gt;                                AND   ARBGB = MESSTAB-MSGID&lt;/P&gt;&lt;P&gt;                                AND   MSGNR = MESSTAB-MSGNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;var_msg = messtab-msgv1&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody help me applying similar logic through session method.&lt;/P&gt;&lt;P&gt;it is very urgent requirement so ur valuable support will grant to maximum points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks''&lt;/P&gt;&lt;P&gt;sonal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754832#M327149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754833#M327150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BDC session method will not give you the messages back as the BDC is not being executed immediately. It creates a session which you can see in SM35 and see the messages there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you cannot read from the program where the BDC is being triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;note - Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754833#M327150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754834#M327151</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;When you create the BDC Session MEthod a session is created in SM35.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do you need to use messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error log will be available in SM35 itself after you process the session.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:21:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754834#M327151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754835#M327152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Session method will not return the messages. when you run the BDC it create the session , you have to process the session in SM35 and see the log.&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;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754835#M327152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754836#M327153</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;The error log is made in SM35. more over a session cannot return messages coz it is not an online process like call transaction. it has be processed using sm35 and the logs are made in sm35.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:28:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754836#M327153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754837#M327154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I want to use one variable from the messtab in next transaction as a important field .&lt;/P&gt;&lt;P&gt;for example in O3A1 transaction ,exchange no is created which i want to use in next transaction O3A2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest a way to solve this problem.&lt;/P&gt;&lt;P&gt;I need the answer asap.&lt;/P&gt;&lt;P&gt;answering fulfilling my requirement will be awarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;P&gt;sonal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754837#M327154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754838#M327155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sonal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you will have restrict yourself to the CALL TRANSACTION method which will give you immediate results and you can do your further transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC session method will not execute the trasaction immediately and it's not meant to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:46:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754838#M327155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754839#M327156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sonal,&lt;/P&gt;&lt;P&gt;    Try to make use of BDCLM table where the session log will be stored you can take errors for session from this table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 13:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754839#M327156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T13:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: BDC session method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754840#M327157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to execute the sesion immediately,use submit command.Submit your queue ID(exp parameter of open_group) to program RSBDCBTC in the report. and and take error log from BDCLM table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Nov 2006 14:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-method/m-p/1754840#M327157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-29T14:02:20Z</dc:date>
    </item>
  </channel>
</rss>

