<?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 keyword using in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359785#M521878</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is havin two screen how can i submit to secon screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 10:09:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T10:09:56Z</dc:date>
    <item>
      <title>submit keyword using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359783#M521876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a require ment like this .&lt;/P&gt;&lt;P&gt;from my program i am calling sap program /SAPAPO/TS_PLOB_MAINTAIN.&lt;/P&gt;&lt;P&gt;it is having selection screen after giving in put it will show another screen both screens i have to pass the data from my current program.&lt;/P&gt;&lt;P&gt;with out displying those selectionscreens i have to execute that sap program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how it is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is possible tell me wht is the code for this.&lt;/P&gt;&lt;P&gt;&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>Thu, 14 Jun 2007 09:49:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359783#M521876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T09:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: submit keyword using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359784#M521877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try submit programname&lt;/P&gt;&lt;P&gt;        with parameter1 = val1&lt;/P&gt;&lt;P&gt;        with parameter2 = val2&lt;/P&gt;&lt;P&gt;        and return.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 10:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359784#M521877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T10:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: submit keyword using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359785#M521878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is havin two screen how can i submit to secon screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 10:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359785#M521878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T10:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: submit keyword using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359786#M521879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as the fields that need data have different names, I think you can still pass them the values this way even though they are on different screens.  You can also try using &lt;/P&gt;&lt;P&gt;SUBMIT program WITH SELECTION-TABLE rspar.&lt;/P&gt;&lt;P&gt;where according to help&lt;/P&gt;&lt;P&gt;"If you specify this addition, parameters and selection criteria on the selection screen are supplied from an internal table rspar. You must specify an internal table with the row type RSPARAMS for rspar. The structured data type RSPARAMS is defined in the ABAP Dictionary and has the following components, all of which are data type CHAR: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELNAME (length 8), &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KIND (length 1), &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIGN (length 1), &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTION (length 2), &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOW (length 45), &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIGH (length 45). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To supply parameters and selection criteria for the selection screen with specific values, the lines in the internal table rspar must contain the following values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELNAME must contain the name of a parameter or selection criterion for the selection screen in block capitals &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KIND must contain the type of selection screen component (P for parameters, S for selection criteria) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIGN, OPTION, LOW, and HIGH must contain the values specified for the selection table columns that have the same names as the selection criteria; in the case of parameters, the value must be specified in LOW and all other components are ignored. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the name of a selection criterion is repeated in rspar, this defines a selection table containing several lines and passes it on to the selection criterion. If parameter names occur several times, the last value is passed on to the parameter. &lt;/P&gt;&lt;P&gt;The contents of the parameters or selection tables for the current program can be entered in the table by the function module RS_REFRESH_FROM_SELECTOPTIONS. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can try creating a variant (though I don't know if this will work with multiple screens) and use&lt;/P&gt;&lt;P&gt;SUBMIT program USING SELECTION-SET variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add AND RETURN to the end of your statement if you want to come back to your program for further processing after using the called program.  I hope this helps.&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 11:41:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-keyword-using/m-p/2359786#M521879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T11:41:26Z</dc:date>
    </item>
  </channel>
</rss>

