<?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: Skip Selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038725#M85912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;  SUBMIT zvtest
         WITH s_vbeln  =  p_vbeln
         WITH s_posnr  =  p_posnr
         WITH p_create = 'X'
           AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Nov 2005 21:32:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-30T21:32:27Z</dc:date>
    <item>
      <title>Skip Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038724#M85911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to run a report and before the report is generated i need to run a Extract program. So the screen sequence is goe like this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The initial selection screen is the selection criteria for the report. &lt;/P&gt;&lt;P&gt;2. Once the criteria is given and executed it calls up another selection screen which forms the selection criteria for the extraction program.&lt;/P&gt;&lt;P&gt;3. Then the report is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to suppress the selection screen for the extraction program ie the extraction program should run in the background with pre-defined selection criteria. How to go about it? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use SUBMIT .. VIA SELECTION SCREEN.. it still comes up with the selection screen with the pre-defined values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 21:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038724#M85911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-30T21:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Skip Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038725#M85912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;  SUBMIT zvtest
         WITH s_vbeln  =  p_vbeln
         WITH s_posnr  =  p_posnr
         WITH p_create = 'X'
           AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 21:32:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038725#M85912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-30T21:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Skip Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038726#M85913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Submit your program like this......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT program
        with p_field1 = a_parameter
        with p_field2 = b_parameter
        with s_field3 in c_select_Option
               and return.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you are passing values from varialble to the selection-screen fields, lets say they are P_FIELD1 and P_FIELD2.  Using the WITH statement allows you to pass parameters as well as select-options.  It will skip the selection screen and continue processing with the passed selection-screen values.&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, 30 Nov 2005 21:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038726#M85913</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-11-30T21:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Skip Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038727#M85914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are submitting then you should pass the parameters to the selection screen of submit program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am setting the screen fields to avoid selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 21:36:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038727#M85914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-30T21:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Skip Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038728#M85915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom, these suggestions should have solved your problem.  Please make sure to award points for helpful answers and mark you post as solved.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to SDN!&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 21:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-selection-screen/m-p/1038728#M85915</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-11-30T21:47:51Z</dc:date>
    </item>
  </channel>
</rss>

