<?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 via selection screen with selection-table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521502#M1560552</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;Use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT (standard program) WITH SELECTION-TABLE   Seltab and Return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  seltab is an internal table with the structure RSPARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This variant allows you to set the names and contents of the parameters and selection options dynamically at runtime. &lt;/P&gt;&lt;P&gt;You can use the function module RS_REFRESH_FROM_SELECTOPTIONS to read the contents of the parameters and selection options of the current program into an internal table seltab with the structure RSPARAMS. By using SUBMIT ... WITH SELECTION-TABLE seltab, you can then pass these values on directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Nov 2010 04:03:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-30T04:03:25Z</dc:date>
    <item>
      <title>SUBMIT via selection screen with selection-table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521499#M1560549</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;May be this is already available in forum, but im not able to get the right solution, because the problem i face is quiet different. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a standard program to which i need to include 3 additional fields to the selection screen. So what i did is created a Z program only with the selection screen (including 3 new fields) and called the function module 'RS_REFRESH_FROM_SELECTOPTIONS' and then used the submit statement to call the standard program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT (standard program) WITH SELECTION-TABLE gt_rsparams&lt;/P&gt;&lt;P&gt;                 VIA SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem i'm facing is,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when i execute the Z program it first displays the new selection screen (with newly added field) and feed the input detail and when I execute again, now it again displays the selection screen of the standard program ( the one without new fields), &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest me what i miss here. Why it displays the standard program selection screen?.How can i skip this..&lt;/P&gt;&lt;P&gt;So when i execute this Z program i should get the selection screen with the new fields and just the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone please help. It's quite critical.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anbu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Nov 2010 23:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521499#M1560549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-29T23:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT via selection screen with selection-table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521500#M1560550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take out VIA SELECTION-SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT (standard program) WITH SELECTION-TABLE gt_rsparams and return.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 02:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521500#M1560550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-30T02:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT via selection screen with selection-table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521501#M1560551</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;    Remove the VIA SELECTION-SCREEN addition from the Submit statement.&lt;/P&gt;&lt;P&gt;    F1 on SUBMIT and you can go thru the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 03:54:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521501#M1560551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-30T03:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT via selection screen with selection-table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521502#M1560552</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;Use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT (standard program) WITH SELECTION-TABLE   Seltab and Return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here  seltab is an internal table with the structure RSPARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This variant allows you to set the names and contents of the parameters and selection options dynamically at runtime. &lt;/P&gt;&lt;P&gt;You can use the function module RS_REFRESH_FROM_SELECTOPTIONS to read the contents of the parameters and selection options of the current program into an internal table seltab with the structure RSPARAMS. By using SUBMIT ... WITH SELECTION-TABLE seltab, you can then pass these values on directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 04:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521502#M1560552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-30T04:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT via selection screen with selection-table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521503#M1560553</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;Thanks..solved the issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anbu...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Nov 2010 11:29:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-via-selection-screen-with-selection-table/m-p/7521503#M1560553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-30T11:29:29Z</dc:date>
    </item>
  </channel>
</rss>

