<?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: CALL TRANSACTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788708#M650408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Call Transaction &amp;lt;tcode&amp;gt; Mode '&amp;lt;Mode&amp;gt;'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A - Means All Screens .. that means Processing in Foreground&lt;/P&gt;&lt;P&gt;E - Means Only Error Screens will be displayed.&lt;/P&gt;&lt;P&gt;N - Means No Screens .. that means Backgound processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default Mode will be 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF HELPFUL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2007 09:43:02 GMT</pubDate>
    <dc:creator>varma_narayana</dc:creator>
    <dc:date>2007-09-18T09:43:02Z</dc:date>
    <item>
      <title>CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788705#M650405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone tell me about, when using call transaction, what are the Modes of BDC(i.e. A, P, etc.)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 08:58:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788705#M650405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T08:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788706#M650406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;3 Mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A - All screens are displayed for that transaction recorded&lt;/P&gt;&lt;P&gt;N - No screens&lt;/P&gt;&lt;P&gt;E - Error Screens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 09:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788706#M650406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T09:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788707#M650407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;T.Code&amp;gt; USING &amp;lt;BDCTAB&amp;gt; MODE &amp;lt;A/N/E&amp;gt; UPDATE &lt;/P&gt;&lt;P&gt;&amp;lt;S/A&amp;gt;&lt;/P&gt;&lt;P&gt;MESSAGES INTO &amp;lt;BDCMSGCOLL Int.Table&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter 1 : Transaction Code&lt;/P&gt;&lt;P&gt;Parameter 2 : It is name of BDCDATA table.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Parameter 3 : Specifying Mode in which you execute transaction. &lt;/P&gt;&lt;P&gt;A - All screen mode. All the screen of transaction&lt;/P&gt;&lt;P&gt;are displayed. &lt;/P&gt;&lt;P&gt;N - No screen mode. No screen is displayed when you &lt;/P&gt;&lt;P&gt;execute the transaction. &lt;/P&gt;&lt;P&gt;E - Error screen. Only those screens are displayed &lt;/P&gt;&lt;P&gt;where you have error record.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; Parameter 4 : Specifying Update type by which data base table is &lt;/P&gt;&lt;P&gt;updated.&lt;/P&gt;&lt;P&gt;S - It is for Synchronous update in which if you &lt;/P&gt;&lt;P&gt;change data for one table then all the relacted &lt;/P&gt;&lt;P&gt;tables gets updated. And then sy-subrc is returned&lt;/P&gt;&lt;P&gt;i.e., sy-subrc is returned for once and all. &lt;/P&gt;&lt;P&gt;A - It is for Asynchronous update, when you change &lt;/P&gt;&lt;P&gt;data of one table, the sy-subrc is returned. And&lt;/P&gt;&lt;P&gt;then updation of other affected tables takes place&lt;/P&gt;&lt;P&gt;If system fails to update other tables still&lt;/P&gt;&lt;P&gt;sy-subrc returned is 0.&lt;/P&gt;&lt;P&gt;Parameter 5 : When you update database table, operation is either&lt;/P&gt;&lt;P&gt;successful or unsuccessful or operation is successful&lt;/P&gt;&lt;P&gt;with some warning. These messages are stored in &lt;/P&gt;&lt;P&gt;internal table which you specify along with MESSAGE&lt;/P&gt;&lt;P&gt;statement. This internal table should be declared like&lt;/P&gt;&lt;P&gt;BDCMSGCOLL structure.&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;Naveen khan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Pattan Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 09:09:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788707#M650407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T09:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788708#M650408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Call Transaction &amp;lt;tcode&amp;gt; Mode '&amp;lt;Mode&amp;gt;'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A - Means All Screens .. that means Processing in Foreground&lt;/P&gt;&lt;P&gt;E - Means Only Error Screens will be displayed.&lt;/P&gt;&lt;P&gt;N - Means No Screens .. that means Backgound processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default Mode will be 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF HELPFUL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 09:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788708#M650408</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-09-18T09:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788709#M650409</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;&lt;/P&gt;&lt;P&gt;Processing batch input data with CALL TRANSACTION USING is the faster of the two recommended data transfer methods. In this method, legacy data is processed inline in your data transfer program. &lt;/P&gt;&lt;P&gt;	Syntax:&lt;/P&gt;&lt;P&gt;	CALL TRANSACTION &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 10:15:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788709#M650409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T10:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788710#M650410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok............it's fine.&lt;/P&gt;&lt;P&gt;Thanks for quick replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prasad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 10:16:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/2788710#M650410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T10:16:18Z</dc:date>
    </item>
  </channel>
</rss>

