<?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 SUBMIT COMMAND in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010352#M711379</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;     i am using the command SUBMIT PROGRAMNAME VIA SELECTION SCREEN AND RETURN.&lt;/P&gt;&lt;P&gt;   now i want the submit program internal table values to the current program.&lt;/P&gt;&lt;P&gt;    how i get the internal table values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Nov 2007 06:52:17 GMT</pubDate>
    <dc:creator>vallamuthu_madheswaran2</dc:creator>
    <dc:date>2007-11-02T06:52:17Z</dc:date>
    <item>
      <title>SUBMIT COMMAND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010352#M711379</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;     i am using the command SUBMIT PROGRAMNAME VIA SELECTION SCREEN AND RETURN.&lt;/P&gt;&lt;P&gt;   now i want the submit program internal table values to the current program.&lt;/P&gt;&lt;P&gt;    how i get the internal table values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2007 06:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010352#M711379</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2007-11-02T06:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT COMMAND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010353#M711380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt; refer this URL :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get more info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/rep_submit.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/rep_submit.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2007 06:54:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010353#M711380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-02T06:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT COMMAND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010354#M711381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once the program report has been accessed, the list stored there in the ABAP Memory is read by means of function modules and inserted in the current list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA list_tab TYPE TABLE OF abaplist. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report EXPORTING LIST TO MEMORY &lt;/P&gt;&lt;P&gt;              AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LIST_FROM_MEMORY' &lt;/P&gt;&lt;P&gt;  TABLES &lt;/P&gt;&lt;P&gt;    listobject = list_tab &lt;/P&gt;&lt;P&gt;  EXCEPTIONS &lt;/P&gt;&lt;P&gt;    not_found  = 1 &lt;/P&gt;&lt;P&gt;    OTHERS     = 2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0. &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WRITE_LIST' &lt;/P&gt;&lt;P&gt;    TABLES &lt;/P&gt;&lt;P&gt;      listobject = list_tab. &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2007 07:00:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010354#M711381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-02T07:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT COMMAND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010355#M711382</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;Calls an executable program of type 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;rep&amp;gt; [AND RETURN] [VIA SELECTION-SCREEN]&lt;/P&gt;&lt;P&gt;                          [USING SELECTION-SET &amp;lt;var&amp;gt;]&lt;/P&gt;&lt;P&gt;                          [WITH &amp;lt;sel&amp;gt; &amp;lt;criterion&amp;gt;]&lt;/P&gt;&lt;P&gt;                          [WITH FREE SELECTIONS &amp;lt;freesel&amp;gt;]&lt;/P&gt;&lt;P&gt;                          [WITH SELECTION-TABLE &amp;lt;rspar&amp;gt;]&lt;/P&gt;&lt;P&gt;                          [LINE-SIZE &amp;lt;width&amp;gt;]&lt;/P&gt;&lt;P&gt;                          [LINE-COUNT &amp;lt;length&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calls the program &amp;lt;rep&amp;gt;. If you omit the AND RETURN addition, the current program is terminated. Otherwise, the data from the current program is retained, and processing returns to the calling program when &amp;lt;rep&amp;gt; has finished running. The other additions control the selection screen and set attributes of the default list in the called program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Addition&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;... WITH SELECTION-TABLE rspar &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Effect&amp;lt;/b&amp;gt; &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;&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;&amp;lt;b&amp;gt;Note&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;In contrast to selection tables, the data types of the components LOW and HIGH in table rspar are always of type CHAR and are converted to the type of the parameter or selection criterion during transfer, if necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2007 07:04:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010355#M711382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-02T07:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT COMMAND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010356#M711383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   The value comes from ASCII.  the result is given below.&lt;/P&gt;&lt;P&gt;result&lt;/P&gt;&lt;P&gt;2020202020202020202020203174AE490303030300B8310000000000000000000200010000000000A000202D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2D2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;vallamuthu.m&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2007 08:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-command/m-p/3010356#M711383</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2007-11-02T08:09:47Z</dc:date>
    </item>
  </channel>
</rss>

