<?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 prgname in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-prgname/m-p/3855188#M926738</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im calling another program through SUBMIT...EXPORTING LIST TO MEMORY.. RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to modify the content of internal table displayed at the list output . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex,&lt;/P&gt;&lt;P&gt;   if my list output contains 5 fields having 50 entries, i want to modify(manipulate) the contents in the 4th field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im also using the fm LIST_FROM_MEMORY &amp;amp; WRITE_LIST&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 May 2008 16:52:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-13T16:52:44Z</dc:date>
    <item>
      <title>SUBMIT prgname</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-prgname/m-p/3855188#M926738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im calling another program through SUBMIT...EXPORTING LIST TO MEMORY.. RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to modify the content of internal table displayed at the list output . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex,&lt;/P&gt;&lt;P&gt;   if my list output contains 5 fields having 50 entries, i want to modify(manipulate) the contents in the 4th field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im also using the fm LIST_FROM_MEMORY &amp;amp; WRITE_LIST&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 16:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-prgname/m-p/3855188#M926738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T16:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT prgname</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-prgname/m-p/3855189#M926739</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 call one selection screen from other selection screen program using SUBMIT command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax is as follows -&lt;/P&gt;&lt;P&gt;codeSUBMIT... 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;.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;The following executable program (report) creates a selection screen containing the parameter PARAMET and the selection criterion SELECTO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;codeREPORT demo_program_submit_rep1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA number TYPE i.&lt;/P&gt;&lt;P&gt;PARAMETERS paramet(14) TYPE c.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS selecto FOR number.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program DEMO_PROGRAM_SUBMIT_REP1 is called by the following program using various parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;codeREPORT demo_program_submit_sel_screen NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: int TYPE i,&lt;/P&gt;&lt;P&gt;rspar TYPE TABLE OF rsparams,&lt;/P&gt;&lt;P&gt;wa_rspar LIKE LINE OF rspar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES seltab FOR int.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: 'Select a Selection!',&lt;/P&gt;&lt;P&gt;/ '----&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;'.&lt;/P&gt;&lt;P&gt;SKIP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORMAT HOTSPOT COLOR 5 INVERSE ON.&lt;/P&gt;&lt;P&gt;WRITE: 'Selection 1',&lt;/P&gt;&lt;P&gt;/ 'Selection 2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;CASE sy-lilli.&lt;/P&gt;&lt;P&gt;WHEN 4.&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'. seltab-option = 'BT'.&lt;/P&gt;&lt;P&gt;seltab-low = 1. seltab-high = 5.&lt;/P&gt;&lt;P&gt;APPEND seltab.&lt;/P&gt;&lt;P&gt;SUBMIT demo_program_submit_rep1 VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;WITH paramet eq 'Selection 1'&lt;/P&gt;&lt;P&gt;WITH selecto IN seltab&lt;/P&gt;&lt;P&gt;WITH selecto ne 3&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;WHEN 5.&lt;/P&gt;&lt;P&gt;wa_rspar-selname = 'SELECTO'. wa_rspar-kind = 'S'.&lt;/P&gt;&lt;P&gt;wa_rspar-sign = 'E'. wa_rspar-option = 'BT'.&lt;/P&gt;&lt;P&gt;wa_rspar-low = 14. wa_rspar-high = 17.&lt;/P&gt;&lt;P&gt;APPEND wa_rspar TO rspar.&lt;/P&gt;&lt;P&gt;wa_rspar-selname = 'PARAMET'. wa_rspar-kind = 'P'.&lt;/P&gt;&lt;P&gt;wa_rspar-low = 'Selection 2'.&lt;/P&gt;&lt;P&gt;APPEND wa_rspar TO rspar.&lt;/P&gt;&lt;P&gt;wa_rspar-selname = 'SELECTO'. wa_rspar-kind = 'S'.&lt;/P&gt;&lt;P&gt;wa_rspar-sign = 'I'. wa_rspar-option = 'GT'.&lt;/P&gt;&lt;P&gt;wa_rspar-low = 10.&lt;/P&gt;&lt;P&gt;APPEND wa_rspar TO rspar.&lt;/P&gt;&lt;P&gt;SUBMIT demo_program_submit_rep1 VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;WITH SELECTION-TABLE rspar&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;ENDCASE.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; To leave a called program, you can use SUBMIT .... AND RETURN. by choosing F3 or F15 from list level 0 of the called report. &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;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 16:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-prgname/m-p/3855189#M926739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T16:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT prgname</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-prgname/m-p/3855190#M926740</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;    I want to work with the internal table having the list output in the program demo_program_submit_rep1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your effort&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 17:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-prgname/m-p/3855190#M926740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T17:01:26Z</dc:date>
    </item>
  </channel>
</rss>

