<?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 Calling one program &amp; from another program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/3193333#M760880</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;            I want to call one report program from another program which i will be creating. So please guide me regarding how is it possible to get the output of one program in the internal table in my own program, which i can use further . Inshort, how one can call one report program from another &amp;amp; store it's output in the inernal table or memory, so that it can be used further in the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Dec 2007 10:14:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-26T10:14:02Z</dc:date>
    <item>
      <title>Calling one program &amp; from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/3193333#M760880</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;            I want to call one report program from another program which i will be creating. So please guide me regarding how is it possible to get the output of one program in the internal table in my own program, which i can use further . Inshort, how one can call one report program from another &amp;amp; store it's output in the inernal table or memory, so that it can be used further in the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Chetan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 10:14:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/3193333#M760880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T10:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program &amp; from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/3193334#M760881</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;By using the SUBMIT command we can do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points if it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;satish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:11:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/3193334#M760881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T12:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Calling one program &amp; from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/3193335#M760882</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;Chetan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you start an executable program, the standard selection screen normally appears, containing the selection criteria and parameters of both the logical database connected to the program and of the program itself (see Direct Execution - Reports). When you start an executable program using SUBMIT, there are various additions that you can use to fill the input fields on the selection screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT... [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;&lt;/P&gt;&lt;P&gt;When you call an ABAP program, you can modify its lists, send them to a spool file instead of the screen, or store them in ABAP memory. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modifying the List Structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can modify the list structure of a called program by using the following additions in the SUBMIT statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT... [LINE-SIZE &amp;lt;width&amp;gt;] [LINE-COUNT &amp;lt;length&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the called program contains no such options in the REPORT statement, the system formats the lists of the called program according to the options in the SUBMIT statement. If, on the other hand, the REPORT statement in the called program does specify a list structure, the additions in the SUBMIT statement are ignored. For further information about these additions, refer to Defining Your Own List Structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the information i provided helped u plzz reward &lt;/P&gt;&lt;P&gt;for any further quiries my mail id mutyalasunilkumar@gmail.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz dont forget to reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-one-program-from-another-program/m-p/3193335#M760882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T12:17:36Z</dc:date>
    </item>
  </channel>
</rss>

