<?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: Problem with call transaction. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025384#M962023</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then there screen field issue,you have to record properly then try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jun 2008 15:57:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-09T15:57:49Z</dc:date>
    <item>
      <title>Problem with call transaction.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025379#M962018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im recording a transaction with the following options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update mode: Asynchronous&lt;/P&gt;&lt;P&gt;CATT mode: No CATT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;X Default size&lt;/P&gt;&lt;P&gt;X Cont. After Commit.&lt;/P&gt;&lt;P&gt;Blank,  Not a Batch Input Session&lt;/P&gt;&lt;P&gt;Blank,  Simulate Background Mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I access one options of the menu and the recording is workin ok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my problem is that when i use that BDC DATA, with call transaction, stops after the first Commit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i need to continue after the commit, is there any way to do that will CALL TRANSACTION?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im using as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION   'PC00_M32_CEDT'&lt;/P&gt;&lt;P&gt;             USING     bdcdata&lt;/P&gt;&lt;P&gt;             MODE      'A'&lt;/P&gt;&lt;P&gt;             UPDATE    'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 15:45:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025379#M962018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T15:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call transaction.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025380#M962019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please check mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mode 'A': display all screen&lt;/P&gt;&lt;P&gt;mode 'N': background processing - does not stop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 15:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025380#M962019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T15:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call transaction.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025381#M962020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Javier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION tcod ... MODE mode &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The specified processing mode can accept the following values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'A' Display screen &lt;/P&gt;&lt;P&gt;'E' Display screen only if an error occurs &lt;/P&gt;&lt;P&gt;'N' No display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the addition MODE is not specified, the processing mode is set to 'A' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The MODE Parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the MODE parameter to specify whether data transfer processing should be displayed as it happens. You can choose between three modes: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A Display all. All screens and the data that goes in them appear when you run your program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;N No display. All screens are processed invisibly, regardless of whether there are errors or not. Control returns to your program as soon as transaction processing is finished. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E Display errors only. The transaction goes into display mode as soon as an error in one of the screens is detected. You can then correct the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at below link for details:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Using CALL TRANSACTION USING for Data Transfer&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 15:54:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025381#M962020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T15:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call transaction.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025382#M962021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U need to pass CTU_PARAMS parameters as ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : param like CTU_PARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;params-DISMODE = 'A'.&lt;/P&gt;&lt;P&gt;params-UPDMODE = 'S'.&lt;/P&gt;&lt;P&gt;params-DEFSIZE ='X'.&lt;/P&gt;&lt;P&gt;params-RACOMMIT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'PC00_M32_CEDT'&lt;/P&gt;&lt;P&gt;USING bdcdata options params.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 15:55:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025382#M962021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T15:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call transaction.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025383#M962022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tks Ralf,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but with N, stops after the first commit =( too, and does not continue with rest of the bdcdata.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 15:55:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025383#M962022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T15:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call transaction.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025384#M962023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then there screen field issue,you have to record properly then try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 15:57:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025384#M962023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T15:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with call transaction.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025385#M962024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tks A LOT!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now its working fine!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2008 16:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/4025385#M962024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-09T16:03:22Z</dc:date>
    </item>
  </channel>
</rss>

