<?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: Running report in background using parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855476#M669285</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;use the sample code and change it according to ur req..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report1 USING SELECTION-SCREEN '1100' &lt;/P&gt;&lt;P&gt;               WITH SELECTION-TABLE rspar_tab &lt;/P&gt;&lt;P&gt;               WITH selcrit2 BETWEEN 'H' AND 'K' &lt;/P&gt;&lt;P&gt;               WITH selcrit2 IN range_tab &lt;/P&gt;&lt;P&gt;               AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2007 09:57:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-19T09:57:17Z</dc:date>
    <item>
      <title>Running report in background using parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855475#M669284</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;&lt;/P&gt;&lt;P&gt;i have an abap report that needs to run in background because it runs longer than profile timeout parameter allows to. now my question is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if this report uses dynpro with parameters, how do i have to modify it to run in background and to pass those parameters to ? ( SUBMIT ? ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 09:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855475#M669284</guid>
      <dc:creator>former_member5350</dc:creator>
      <dc:date>2007-09-19T09:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Running report in background using parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855476#M669285</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;use the sample code and change it according to ur req..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report1 USING SELECTION-SCREEN '1100' &lt;/P&gt;&lt;P&gt;               WITH SELECTION-TABLE rspar_tab &lt;/P&gt;&lt;P&gt;               WITH selcrit2 BETWEEN 'H' AND 'K' &lt;/P&gt;&lt;P&gt;               WITH selcrit2 IN range_tab &lt;/P&gt;&lt;P&gt;               AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 09:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855476#M669285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T09:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Running report in background using parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855477#M669286</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;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;Reward points if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 10:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855477#M669286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T10:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Running report in background using parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855478#M669287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so far, helped me a lot!&lt;/P&gt;&lt;P&gt;But how can i tell the report it has to run in background ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 10:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-in-background-using-parameters/m-p/2855478#M669287</guid>
      <dc:creator>former_member5350</dc:creator>
      <dc:date>2007-09-19T10:04:07Z</dc:date>
    </item>
  </channel>
</rss>

