<?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: Call program with submit - passing values (ranges) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694217#M889555</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Wolfgang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : seltab type table to RSPARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'. (or E)&lt;/P&gt;&lt;P&gt;seltab-option = 'EQ'. &lt;/P&gt;&lt;P&gt;seltab-low = ..&lt;/P&gt;&lt;P&gt;seltab-hight = ..&lt;/P&gt;&lt;P&gt;append seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Alternatively if seletion screen of called program and calling program are same you can use Function module RS_REFRESH_FROM_SELECTOPTIONS to read all parameters of your current program)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;progname&amp;gt;  WITH SELECTION-TABLE seltab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Apr 2008 09:56:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-18T09:56:17Z</dc:date>
    <item>
      <title>Call program with submit - passing values (ranges)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694214#M889552</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 have two programs with selection-screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario:&lt;/P&gt;&lt;P&gt;The user triggers only one program and the other one should be triggered in background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i try to pass the values from the one selection-screen to the selection-screen of the second program like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit &amp;lt;program&amp;gt; with p_param = p_param&lt;/P&gt;&lt;P&gt;                           and exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now i can see in the second program that the value looks like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IEQIEQ&amp;lt;value&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i avoid that the sign and option parameter is inserted twice?&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, 18 Apr 2008 09:45:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694214#M889552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T09:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Call program with submit - passing values (ranges)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694215#M889553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Wolfgang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the selection criteria are select-options then use the following coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  submit &amp;lt;program&amp;gt; with o_sel_A in o_sel_B[].
and exit.
&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;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 09:48:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694215#M889553</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-04-18T09:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Call program with submit - passing values (ranges)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694216#M889554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;1.use like this:&lt;/P&gt;&lt;P&gt;SUBMIT program02 USING SELECTION-SCREEN '1000'&lt;/P&gt;&lt;P&gt;WITH S_BUKRS IN R_BUKRS&lt;/P&gt;&lt;P&gt;WITH S_CTA IN R_CTA1&lt;/P&gt;&lt;P&gt;WITH S_VTO IN R_VTO&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;2.SUBMIT rm07mlbs WITH matnr IN s_matnr&lt;/P&gt;&lt;P&gt;                  WITH werks IN s_plant   &lt;/P&gt;&lt;P&gt;                  WITH lgort IN s_lgort  &lt;/P&gt;&lt;P&gt;                  WITH charg IN s_batch   &lt;/P&gt;&lt;P&gt;                  WITH pa_hsq    = c_space&lt;/P&gt;&lt;P&gt;                  WITH pa_flt    = c_x&lt;/P&gt;&lt;P&gt;                  WITH novalues  = c_x&lt;/P&gt;&lt;P&gt;                  WITH nozero    = c_x&lt;/P&gt;&lt;P&gt;                  WITH xmchb     = c_x&lt;/P&gt;&lt;P&gt;              AND RETURN    .&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SHIVA(reward if helpful).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 09:54:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694216#M889554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T09:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Call program with submit - passing values (ranges)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694217#M889555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Wolfgang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : seltab type table to RSPARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'. (or E)&lt;/P&gt;&lt;P&gt;seltab-option = 'EQ'. &lt;/P&gt;&lt;P&gt;seltab-low = ..&lt;/P&gt;&lt;P&gt;seltab-hight = ..&lt;/P&gt;&lt;P&gt;append seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Alternatively if seletion screen of called program and calling program are same you can use Function module RS_REFRESH_FROM_SELECTOPTIONS to read all parameters of your current program)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;progname&amp;gt;  WITH SELECTION-TABLE seltab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohaiyuddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 09:56:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694217#M889555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T09:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Call program with submit - passing values (ranges)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694218#M889556</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 can pass the selection screen parameters using the structure RSPARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill a structure (ex. sel_tab) of type RSPARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;program name&amp;gt; with sel_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Lakshmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 09:58:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-program-with-submit-passing-values-ranges/m-p/3694218#M889556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-18T09:58:50Z</dc:date>
    </item>
  </channel>
</rss>

