<?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 as Background Process in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942386#M1693265</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Raymond,&lt;/P&gt;&lt;P&gt;Its working now.&lt;/P&gt;&lt;P&gt;But before adding &lt;STRONG&gt;IF sy-batch IS INITIAL.&lt;/STRONG&gt;&amp;nbsp; the printer and job schedule popups were coming.&lt;/P&gt;&lt;P&gt;and even after adding, both the popups still come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is there anyway they can be suppressed or run in background so the user doesn't have to click few times on the popups in order to start the background job ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Jan 2014 11:26:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-01-03T11:26:24Z</dc:date>
    <item>
      <title>Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942379#M1693258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I have few reports that need to be run in both foreground and background as per the user wants. &lt;/P&gt;&lt;P&gt;At selection screen, there has to be a Checkbox for background process, which if the user checks and Executes (F8) then the program should run in the background and after its finished the output (Smartform/Mail/ALVgrid) should be displayed/sent accordingly.&lt;/P&gt;&lt;P&gt;Now I have searched alot but have not found proper solution for this exact problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So please help me with this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vishal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 06:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942379#M1693258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-05T06:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942380#M1693259</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;check the thread which will give some information in using background programing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/805457"&gt;http://scn.sap.com/thread/805457&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 06:41:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942380#M1693259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-05T06:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942381#M1693260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without too much code you could try in PAI (AT SELECTION-SCREEN)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;TABLES: sscrfields.&lt;/P&gt;&lt;P&gt; PARAMETERS p_backgr AS CHECKBOX.&lt;/P&gt;&lt;P&gt; AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF ( sscrfields-ucomm EQ 'ONLI' OR sscrfields-ucomm EQ 'PRIN' )&lt;/P&gt;&lt;P&gt;&amp;nbsp; AND p_backgr IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sscrfields-ucomm = 'SJOB'.&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want the background information pop-up, code a JOB_OPEN/SUBMIT VIA JOB/JOB_CLOSE in the START-OF-SELECTION. (Samples at &lt;A href="http://help.sap.com/saphelp_sm32/helpdata/en/fa/096ce5543b11d1898e0000e8322d00/content.htm"&gt;cheduling a Job: Full-Control Method&lt;/A&gt;) You can pass parameters in the SUBMIT with option WITH SELECTION-TABLE where the internal table is provided by FM RS_REFRESH_FROM_SELECTOPTIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 07:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942381#M1693260</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-09-05T07:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942382#M1693261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the selection screen, the user can hit F8 for online and F9 for background processing. Why is there a need for additional development?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 10:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942382#M1693261</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2012-09-05T10:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942383#M1693262</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;yes you can go with function keys and select foreground and background insted of writing code seperatly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try using F8 and F9 function keys as explained in above thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2012 10:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942383#M1693262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-05T10:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942384#M1693263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Raymond for ur reply.&lt;/P&gt;&lt;P&gt;I tried ur solution in my code but as soon as the Background job starts,&lt;/P&gt;&lt;P&gt;It directly gets CANCELLED.&lt;/P&gt;&lt;P&gt;So what could be the reason for this ?&lt;/P&gt;&lt;P&gt;my code is as below.&lt;/P&gt;&lt;P&gt;===========================================&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;INITIALIZATION.&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; SELECTION-&lt;SPAN class="L1S52"&gt;SCREEN&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;BEGIN&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;OF&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;BLOCK&lt;/SPAN&gt; b1 &lt;SPAN class="L1S52"&gt;WITH&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;FRAME&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;TITLE&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;text&lt;/SPAN&gt;-&lt;SPAN class="L1S32"&gt;001&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;SELECT&lt;/SPAN&gt;-OPTIONS : so_no &lt;SPAN class="L1S52"&gt;FOR&lt;/SPAN&gt; vbak-vbeln ,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; c_name &lt;SPAN class="L1S52"&gt;FOR&lt;/SPAN&gt; vbpa-kunnr,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; so_date &lt;SPAN class="L1S52"&gt;FOR&lt;/SPAN&gt; itab-edatu.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PARAMETERS&lt;/SPAN&gt; : backg &lt;SPAN class="L1S52"&gt;AS&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;CHECKBOX&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;DEFAULT&lt;/SPAN&gt; &lt;SPAN class="L1S33"&gt;' '&lt;/SPAN&gt; USER-COMMAND e2.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PARAMETERS&lt;/SPAN&gt; : p_mail &lt;SPAN class="L1S52"&gt;AS&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;CHECKBOX&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;DEFAULT&lt;/SPAN&gt; &lt;SPAN class="L1S33"&gt;' '&lt;/SPAN&gt; USER-COMMAND e1.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; SELECTION-&lt;SPAN class="L1S52"&gt;SCREEN&lt;/SPAN&gt;: &lt;SPAN class="L1S52"&gt;END&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;OF&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;BLOCK&lt;/SPAN&gt; b1.&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L1S52"&gt;AT&lt;/SPAN&gt; SELECTION-&lt;SPAN class="L1S52"&gt;SCREEN&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;IF&lt;/SPAN&gt; ( sscrfields-ucomm &lt;SPAN class="L1S52"&gt;EQ&lt;/SPAN&gt; &lt;SPAN class="L1S33"&gt;'ONLI'&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;OR&lt;/SPAN&gt; sscrfields-ucomm &lt;SPAN class="L1S52"&gt;EQ&lt;/SPAN&gt; &lt;SPAN class="L1S33"&gt;'PRIN'&lt;/SPAN&gt; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;AND&lt;/SPAN&gt; backg &lt;SPAN class="L1S52"&gt;IS&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;NOT&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;INITIAL&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sscrfields-ucomm = &lt;SPAN class="L1S33"&gt;'SJOB'&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;ENDIF&lt;/SPAN&gt;.&lt;BR /&gt; &lt;BR /&gt; START-&lt;SPAN class="L1S52"&gt;OF&lt;/SPAN&gt;-SELECTION. &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PERFORM&lt;/SPAN&gt; fetch_data.&lt;BR /&gt; &lt;SPAN class="L1S52"&gt;END&lt;/SPAN&gt;-&lt;SPAN class="L1S52"&gt;OF&lt;/SPAN&gt;-SELECTION.&lt;BR /&gt; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;IF&lt;/SPAN&gt; p_mail = &lt;SPAN class="L1S33"&gt;' '&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;IF&lt;/SPAN&gt; itab[] &lt;SPAN class="L1S52"&gt;IS&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;NOT&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;INITIAL&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PERFORM&lt;/SPAN&gt; field_catalog.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;&lt;SPAN class="L1S31"&gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PERFORM&lt;/SPAN&gt; display. &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;ELSE&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PERFORM&lt;/SPAN&gt; field_catalog.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PERFORM&lt;/SPAN&gt; display.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;ENDIF&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;ELSEIF&lt;/SPAN&gt; backg = &lt;SPAN class="L1S33"&gt;'X'&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PERFORM&lt;/SPAN&gt; prepare_summary.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;ELSEIF&lt;/SPAN&gt; p_mail = &lt;SPAN class="L1S33"&gt;'X'&lt;/SPAN&gt;.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;PERFORM&lt;/SPAN&gt; prepare_summary.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L1S52"&gt;ENDIF&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;Vishal&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jan 2014 10:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942384#M1693263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-03T10:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942385#M1693264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before changing ucomm, add a check&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;IF sy-batch IS INITIAL.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Else that will trigger the pop-ups for print parameter and jobs scheduling, in background &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.sap.com/408/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jan 2014 10:15:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942385#M1693264</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2014-01-03T10:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942386#M1693265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Raymond,&lt;/P&gt;&lt;P&gt;Its working now.&lt;/P&gt;&lt;P&gt;But before adding &lt;STRONG&gt;IF sy-batch IS INITIAL.&lt;/STRONG&gt;&amp;nbsp; the printer and job schedule popups were coming.&lt;/P&gt;&lt;P&gt;and even after adding, both the popups still come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is there anyway they can be suppressed or run in background so the user doesn't have to click few times on the popups in order to start the background job ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jan 2014 11:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942386#M1693265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-03T11:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Running Report as Background Process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942387#M1693266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not with this trick, you would then have to code in the PAI/AT SELECTION-SCREEN&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Extract current selection-screen parameters with RS_REFRESH_FROM_SELECTOPTIONS (and with RS_REFRESH_FROM_DYNAMICAL_SEL if logical database)&lt;/LI&gt;&lt;LI&gt;Fillm the print structure with GET_PRINT_PARAMETERS (setting NO_DIALOG parameter)&lt;/LI&gt;&lt;LI&gt;Open a job with JOB_OPEN&lt;/LI&gt;&lt;LI&gt;SUBMIT the report with options, &lt;A class="blue" href="http://help.sap.com/abapdocu_731/en/abapsubmit_selscreen_parameters.htm#%21ABAP_ADDITION_3@3@"&gt;&lt;SPAN class="qtext"&gt;WITH SELECTION-TABLE rspar&lt;/SPAN&gt;&lt;/A&gt; (&lt;A class="blue" href="http://help.sap.com/abapdocu_731/en/abapsubmit_selscreen_parameters.htm#%21ABAP_ADDITION_5@5@"&gt;&lt;SPAN class="qtext"&gt;WITH FREE SELECTIONS texpr&lt;/SPAN&gt;&lt;/A&gt; if logical database) , SPOOL PARAMETERS pri_params and &lt;A href="http://help.sap.com/abapdocu_731/en/abapsubmit_via_job.htm"&gt;VIA JOB job NUMBER n&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Schedule job for immediate execution with JOB_CLOSE&lt;/LI&gt;&lt;LI&gt;Get back to selection&amp;nbsp; screen (e.g. LEAVE TO CURRENT TRANSACTION or clear ucomm)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jan 2014 12:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-report-as-background-process/m-p/8942387#M1693266</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2014-01-03T12:07:08Z</dc:date>
    </item>
  </channel>
</rss>

