<?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: calling a report from a executable program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571242#M257837</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use of the SUBMIT statement to call a report from a executable program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Oct 2006 07:11:06 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2006-10-17T07:11:06Z</dc:date>
    <item>
      <title>calling a report from a executable program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571240#M257835</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 want to call a report which is generated by tcode CO88 from a executable program. I want to pass the values of order from the exe program only. But my requirement is such that i want co88 to process only open orders, so please suggest how can i do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;Pankaj Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 07:06:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571240#M257835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T07:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: calling a report from a executable program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571241#M257836</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;chk this sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Code used to populate 'select-options' &amp;amp; execute report  &lt;/P&gt;&lt;P&gt;DATA: seltab type table of rsparams,&lt;/P&gt;&lt;P&gt;      seltab_wa like line of seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  seltab_wa-selname = 'PNPPERNR'.&lt;/P&gt;&lt;P&gt;  seltab_wa-sign    = 'I'.&lt;/P&gt;&lt;P&gt;  seltab_wa-option  = 'EQ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;load each personnel number accessed from the structure into&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;parameters to be used in the report&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  loop at pnppernr.&lt;/P&gt;&lt;P&gt;    seltab_wa-low = pnppernr-low.&lt;/P&gt;&lt;P&gt;    append seltab_wa to seltab.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;  SUBMIT zreport with selection-table seltab&lt;/P&gt;&lt;P&gt;                                via selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Code used to populate 'parameters' &amp;amp; execute report  &lt;/P&gt;&lt;P&gt; SUBMIT zreport with p_param1 = 'value'&lt;/P&gt;&lt;P&gt;                with p_param2 = 'value'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other additions for SUBMIT &lt;/P&gt;&lt;P&gt;*Submit report and return to current program afterwards &lt;/P&gt;&lt;P&gt; SUBMIT zreport AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Submit report via its own selection screen &lt;/P&gt;&lt;P&gt; SUBMIT zreport VIA SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Submit report using selection screen variant&lt;/P&gt;&lt;P&gt; SUBMIT zreport USING SELECTION-SET 'VARIANT1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Submit report but export resultant list to memory, rather than &lt;/P&gt;&lt;P&gt;*it being displayed on screen&lt;/P&gt;&lt;P&gt; SUBMIT zreport EXPORTING LIST TO MEMORY.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Once report has finished and control has returned to calling &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; program, use function modules LIST_FROM_MEMORY, WRITE_LIST and &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; DISPLAY_LIST to retrieve and display report.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped pls mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 07:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571241#M257836</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-17T07:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: calling a report from a executable program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571242#M257837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use of the SUBMIT statement to call a report from a executable program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 07:11:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571242#M257837</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2006-10-17T07:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: calling a report from a executable program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571243#M257838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi pankaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can use submit and subit and retun as per as open pocess order u need to do coding and check and down load the pick list fom co27&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 07:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571243#M257838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T07:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: calling a report from a executable program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571244#M257839</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;Based on your given brief information I would say,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should create one new executable program.&lt;/P&gt;&lt;P&gt;Select all open orders only.&lt;/P&gt;&lt;P&gt;Using BDC functionality call transaction CO88.&lt;/P&gt;&lt;P&gt;and pass necessary parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this may help you to start working on your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Palak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 07:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571244#M257839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T07:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: calling a report from a executable program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571245#M257840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anver,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i have 60000 open production order, and i use the same code as u suggested; this will work or not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Oct 2006 08:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-report-from-a-executable-program/m-p/1571245#M257840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-17T08:22:34Z</dc:date>
    </item>
  </channel>
</rss>

