<?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: submit-calltransaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510245#M567701</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 statement executes the program in the Foreground, user intervention is possible,whereas SUBMIT executes the program in the Background.&lt;/P&gt;&lt;P&gt;&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;Samson Rodrigues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jul 2007 02:51:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-11T02:51:12Z</dc:date>
    <item>
      <title>submit-calltransaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510243#M567699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the difference between call transaction &amp;lt;tcode&amp;gt; and submit &amp;lt;program&amp;gt;? the tcode internally calls program then what is the main difference we get?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 02:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510243#M567699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T02:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: submit-calltransaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510244#M567700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Usually we use the SUBMIT statement when we want to call a "Report" program directly, doing so we can bypass the selection screen and just give the output, or export the list to memory and reimport into the caller.  We use CALL TRANSACTION when working with module pool programs, such as VA03, we can set the parameter id for order number and say AND SKIP FIRST SCREEN, this will put you in the main screen of VA03, but you can not do this same thing using the SUMBIT statement because it is not a report type program.  Make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 02:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510244#M567700</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-11T02:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: submit-calltransaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510245#M567701</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 statement executes the program in the Foreground, user intervention is possible,whereas SUBMIT executes the program in the Background.&lt;/P&gt;&lt;P&gt;&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;Samson Rodrigues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 02:51:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510245#M567701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T02:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: submit-calltransaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510246#M567702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Call transaction:&lt;/P&gt;&lt;P&gt;1.Synchronous Processing&lt;/P&gt;&lt;P&gt;2.You can update the database both synchronously and asynchrounously.&lt;/P&gt;&lt;P&gt;3.Transfer of data for individual transaction&lt;/P&gt;&lt;P&gt;4.No batch input session is created.&lt;/P&gt;&lt;P&gt;5.Faster than other batch input techniques.&lt;/P&gt;&lt;P&gt;6.No automatic error log and restart capability is available here.&lt;/P&gt;&lt;P&gt;7.Not recommended for bulk data transfer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Submit is a command which is used to submit a job from a program. The cursor leaves the calling program and starts executing the submitted programs and once finished returns back to the original program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can call application programs in your module pool program using:&lt;/P&gt;&lt;P&gt;1.CALL TRANSACTION for type M program&lt;/P&gt;&lt;P&gt;2. SUBMIT for type 1 program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since your report would be a type 1 program/executable prog , you can use the submit statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets say u have the following parameters on your selection screen of the report:&lt;/P&gt;&lt;P&gt;1. s_aufnr (order)&lt;/P&gt;&lt;P&gt;2. s_werks (plant)&lt;/P&gt;&lt;P&gt;3. p_matnr (material)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT X&lt;/P&gt;&lt;P&gt;WITH s_aufnr IN s_aufnr&lt;/P&gt;&lt;P&gt;WITH s_werks IN s_werks&lt;/P&gt;&lt;P&gt;WITH p_matnr EQ p_matnr&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Roja Velagapudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 03:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-calltransaction/m-p/2510246#M567702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T03:54:08Z</dc:date>
    </item>
  </channel>
</rss>

