<?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 function pool program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572776#M1433100</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkat and gurunath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for reply...actually if i skip first screen then how would i pass the parameters values to that screen because there is no parameter id exist for fields 'JOB NAME'  and 'USERNAME',&lt;/P&gt;&lt;P&gt;so please tell me is there any possibility to set parameter there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Feb 2010 05:17:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-05T05:17:02Z</dc:date>
    <item>
      <title>Submit function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572773#M1433097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using submit statement in Z program and calling standard program of SM37, but problem is that it is going for dump and saying that we cant use submit for function-pool.&lt;/P&gt;&lt;P&gt;can anyone please tell me that how can i submit? can i call this by using call transaction? actually i have to pass selection screen parameters also from my Z program and have to skip standard selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2010 12:52:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572773#M1433097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-04T12:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Submit function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572774#M1433098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;saurabh srivastava, 
There are few things regarding your query, which I need to clarify
&amp;lt;li&amp;gt;Submit statements can be used to call Report programs (Type 1 means executable). So program for SM37 transaction is &lt;STRONG&gt;SAPLBTCH&lt;/STRONG&gt; which means you can not use &lt;STRONG&gt;SUBMIT&lt;/STRONG&gt; statement. &lt;STRONG&gt;SAPLBTCH&lt;/STRONG&gt; is module pool program. You can not use Selection-screen statement for module pool program.
&amp;lt;li&amp;gt;Call transaction can be used to call either report programs or module programs. Which means if transaction is assigned to them, we can use. As I said before program is module pool program. You can still use below statement. 
&lt;PRE&gt;&lt;CODE&gt;
CALL TRANSACTION 'SM37' and SKIP FIRST SCREEN. 
&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt;If you want to use &lt;STRONG&gt;AND SKIP FIRST SCREEN&lt;/STRONG&gt; statement , need to follow the below conditions
&lt;PRE&gt;&lt;CODE&gt;
"1.For the initial dynpro, in the Screen Painter the own dynpro number must not be specified as the next screen number. 
"2.All mandatory input fields of the initial dynpro must be filled completely and with the correct values by the SPA/GPA parameters
&lt;/CODE&gt;&lt;/PRE&gt; 
&amp;lt;li&amp;gt;Please press F1 help on * and SKIP FIRST SCREEN* statement to see how to use. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 03:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572774#M1433098</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-02-05T03:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Submit function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572775#M1433099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; hi ,&lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt; If you want to call the standard transaction then you have to use  " Call transaction &amp;lt;tcode&amp;gt; and skip first screen ".&lt;/P&gt;&lt;P&gt;&amp;gt; but the selection screen of the standard screen has some mandatory paramters to be filled in the first selection screen&lt;/P&gt;&lt;P&gt;&amp;gt; since we are skipping the first screen , you need to set the madantory fields by uisng&lt;/P&gt;&lt;P&gt;&amp;gt; SET PARAMETER ID pid FIELD dobj. &lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt;  if you set this , then the process works successfully&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; regards.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 04:21:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572775#M1433099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T04:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Submit function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572776#M1433100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi venkat and gurunath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for reply...actually if i skip first screen then how would i pass the parameters values to that screen because there is no parameter id exist for fields 'JOB NAME'  and 'USERNAME',&lt;/P&gt;&lt;P&gt;so please tell me is there any possibility to set parameter there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 05:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572776#M1433100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T05:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Submit function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572777#M1433101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;saurabh,
&amp;lt;li&amp;gt;Yes. You are right, There is no PARAMETER ID for JOBNAME or USERNAME, you can not use &lt;STRONG&gt;AND SKIP FIRST SCREEN&lt;/STRONG&gt;. Instead you have to use just &lt;STRONG&gt;CALL TRANSACTION ''&lt;/STRONG&gt; statement. There is no option. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 05:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572777#M1433101</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-02-05T05:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Submit function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572778#M1433102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its very much possible... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see.. with call transaction there is one option called with BDCTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there you can fill the field details and call the transaction... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in  call transaction press F1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 05:49:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572778#M1433102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T05:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: Submit function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572779#M1433103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through this link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1175783"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 06:05:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-function-pool-program/m-p/6572779#M1433103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T06:05:30Z</dc:date>
    </item>
  </channel>
</rss>

