<?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 - selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547621#M248860</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;fill those parameters in your current program &amp;amp; pass them to the SUBMIT statement as follows..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;REPORT&amp;gt; with P_FIELD1  = &amp;lt;value&amp;gt;&lt;/P&gt;&lt;P&gt;                with P_FIELD2  = &amp;lt;value&amp;gt;&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 03 Sep 2006 22:37:26 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2006-09-03T22:37:26Z</dc:date>
    <item>
      <title>SUBMIT - selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547620#M248859</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 want to call a REPORT using SUBMIT and at the same time this REPORT has a selection screen with two parameters P_FIELD1 and P_FIELD2. I want to also pass two values to this two parameters when I call the REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Someone please help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Sep 2006 22:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547620#M248859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-03T22:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT - selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547621#M248860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;fill those parameters in your current program &amp;amp; pass them to the SUBMIT statement as follows..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;REPORT&amp;gt; with P_FIELD1  = &amp;lt;value&amp;gt;&lt;/P&gt;&lt;P&gt;                with P_FIELD2  = &amp;lt;value&amp;gt;&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Sep 2006 22:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547621#M248860</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-09-03T22:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT - selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547622#M248861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Usually I preferr to use Suresh's suggestion, sometimes you may need to pass values dynamically to the SUBMIT statement, in that case, you can do it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report  zrich_0001.

data: iparms type table of RSPARAMS with header line.



iparms-selname = 'P_FIELD1'.
iparms-kind    = 'P'.
iparms-low     = 'Value1'.
append iparms.

iparms-selname = 'P_FIELD2'.
iparms-kind    = 'P'.
iparms-low     = 'Value2'.
append iparms.

submit zrich_0005 
      with selection-table iparms 
               and return.

&lt;/CODE&gt;&lt;/PRE&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>Sun, 03 Sep 2006 22:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547622#M248861</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-09-03T22:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT - selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547623#M248862</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;&lt;/P&gt;&lt;P&gt; You can do that in few ways take a look at the link below to find out more about the various options&lt;/P&gt;&lt;P&gt; &lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/submit_i.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/submit_i.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 00:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547623#M248862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-04T00:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT - selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547624#M248863</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;Please take a look at the example below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT zdealer_contacts_add_edit AND RETURN&lt;/P&gt;&lt;P&gt;                                     WITH p_kunnr = v_kunnr&lt;/P&gt;&lt;P&gt;                                     WITH p_name1 = p_name1  "AVH&lt;/P&gt;&lt;P&gt;                                     WITH p_cdseq = space&lt;/P&gt;&lt;P&gt;                                     WITH p_flag = 'A'&lt;/P&gt;&lt;P&gt;                                     WITH p_addr = it_zts0001-zaddress&lt;/P&gt;&lt;P&gt;                                     WITH p_pers = it_zts0001-zcperson&lt;/P&gt;&lt;P&gt;                                     WITH p_numb = it_zts0001-zcnumber&lt;/P&gt;&lt;P&gt;                                     VIA SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Please award points for useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Sep 2006 01:51:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-selection-screen/m-p/1547624#M248863</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2006-09-04T01:51:27Z</dc:date>
    </item>
  </channel>
</rss>

