<?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 call transaction command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946844#M694733</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i made &amp;lt;b&amp;gt; batch input call transaction&amp;lt;/b&amp;gt;, after i get to the new dynpro if i dont give data in obligatory field it not giving me option to get out i need to get out with TASK MANAGER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if i made it in standard with out my BI it giving me out&lt;/P&gt;&lt;P&gt;why????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2007 09:46:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-16T09:46:00Z</dc:date>
    <item>
      <title>call transaction command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946844#M694733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i made &amp;lt;b&amp;gt; batch input call transaction&amp;lt;/b&amp;gt;, after i get to the new dynpro if i dont give data in obligatory field it not giving me option to get out i need to get out with TASK MANAGER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if i made it in standard with out my BI it giving me out&lt;/P&gt;&lt;P&gt;why????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 09:46:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946844#M694733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T09:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946845#M694734</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;For obligatory fields, it will behave in the same manner.&lt;/P&gt;&lt;P&gt;Remove the OBLIGATORY field &amp;amp; put a validation in START-OF-SELECTON for the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try SUBMIT &amp;lt;PROGRAM_NAME&amp;gt; AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 09:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946845#M694734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T09:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946846#M694735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is function pool so ican not make submit.&lt;/P&gt;&lt;P&gt;i cnnot change the program it's standard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 09:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946846#M694735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T09:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946847#M694736</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;You need to pass the obligatory fields in that case ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: text       TYPE c LENGTH 10, 
      rspar_tab  TYPE TABLE OF rsparams, 
      rspar_line LIKE LINE OF rspar_tab. 

rspar_line-selname = 'SELCRIT1'. 
rspar_line-kind    = 'S'. 
rspar_line-sign    = 'I'. 
rspar_line-option  = 'EQ'. 
rspar_line-low     = 'ABAP'. 
APPEND rspar_line TO rspar_tab. 



SUBMIT report1 USING SELECTION-SCREEN '1100' 
               WITH SELECTION-TABLE rspar_tab 
               WITH selcrit2 BETWEEN 'H' AND 'K' 
               AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2007 10:00:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-command/m-p/2946847#M694736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-16T10:00:31Z</dc:date>
    </item>
  </channel>
</rss>

