<?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: Submitting a report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565670#M1269753</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;   Donot use addition ' selection-screen' when using 'list_options'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 May 2009 05:24:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-12T05:24:39Z</dc:date>
    <item>
      <title>Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565668#M1269751</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;I have created a report program.Now I want to use the output of another report in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this,I have used the statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT zrep WITH SELECTION-TABLE seltab EXPORTING LIST TO&lt;/P&gt;&lt;P&gt;   MEMORY AND RETURN.&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 = itab_list&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    not_found  = 4&lt;/P&gt;&lt;P&gt;    OTHERS     = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the above,the output list of the called program is displayed.When I click on back then Iam able to see the output of my report.&lt;/P&gt;&lt;P&gt;I dont want the output of the called program to be displayed.I simply want to use the output of the called program in my report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me what is the mistake Iam doing and how I can achieve the desired functionality&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565668#M1269751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565669#M1269752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes , you can achieve this.&lt;/P&gt;&lt;P&gt;Use  SUPPRESS DIALOG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565669#M1269752</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-05-12T05:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565670#M1269753</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;   Donot use addition ' selection-screen' when using 'list_options'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565670#M1269753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565671#M1269754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I think when u call another program from ur driver program , it will execute all the code of called program &lt;/P&gt;&lt;P&gt;and hence it will show also the output.&lt;/P&gt;&lt;P&gt;To avoid the output to be shown on the screen , u will have to do the little bit changes to the called program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) When u execute the called program alone , means not through calling from another program , make a flag which is set to 'X' and check this flag if it is set then out put shpuld be shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) When u call the same program from outside another program then call this program by clearing that flag. and as u have made check there that if flag is clear then no output of that program should be shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short, place a check in that program that it is being executed independently or from another program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u will got.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:28:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565671#M1269754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565672#M1269755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used the following code.&lt;/P&gt;&lt;P&gt; SUBMIT report&lt;/P&gt;&lt;P&gt;  WITH SELECTION-TABLE seltab&lt;/P&gt;&lt;P&gt;   EXPORTING LIST TO MEMORY AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     SUPPRESS DIALOG.&lt;/P&gt;&lt;P&gt;Still Iam able to see the output list of called program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565672#M1269755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565673#M1269756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tahir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution is appropriate I guess, but I am not supposed to make changes in the called program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:32:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565673#M1269756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565674#M1269757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Please tell me that how ur called program is showing output. Means is it showing output in Smartform , ALV Grid or List.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is showing output through Smartform or ALV grid then to stop output to be shown is not possible with out modifying the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the output is being shown using List i.e simple write statement then it is possible.&lt;/P&gt;&lt;P&gt;use the syntax as.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   EXPORTING LIST TO MEMORY " -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Use this line , It will throw the output to buffer and not show&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For further help on Submit Statement , write submit statement in program and place cursor on it and press F1 , it will show the detail of use of this statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: tahir naqqash on May 12, 2009 10:44 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:43:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565674#M1269757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565675#M1269758</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;The output of the called program is displayed as ALV Grid list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means that I have no other option to stop the display of called program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all for your replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565675#M1269758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565676#M1269759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shayesta.&lt;/P&gt;&lt;P&gt;I also think so that there is no other option except modifying called program.&lt;/P&gt;&lt;P&gt;If u are afraid from changing the called program that changes can make effect then make the copy of that called program and change it according to ur need and use this modified program &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 06:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565676#M1269759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T06:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Submitting a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565677#M1269760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : t_list  like standard table of abaplist with header line.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF o_list OCCURS 0,&lt;/P&gt;&lt;P&gt;        output(1500)   TYPE c,&lt;/P&gt;&lt;P&gt;      END OF o_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT zrep WITH SELECTION-TABLE seltab EXPORTING LIST TO&lt;/P&gt;&lt;P&gt;MEMORY 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 = t_list&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;not_found = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;listasci = o_list  " list converted to ASCII&lt;/P&gt;&lt;P&gt;listobject = t_list&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;empty_list = 1&lt;/P&gt;&lt;P&gt;list_index_invalid = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 13:40:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submitting-a-report/m-p/5565677#M1269760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T13:40:53Z</dc:date>
    </item>
  </channel>
</rss>

