<?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: Problem submitting a report in back ground in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044013#M420599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just check whether u have filled all the mandatory fields for the selection screen 310 in the submit statement or not ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could u send all the field names in that screen 310.. once ( with their mandatory status )..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward helpful answers..&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Mar 2007 07:12:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-08T07:12:25Z</dc:date>
    <item>
      <title>Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044011#M420597</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;I'm trying to submit a report in background and I always get an error saying make an entry in all required fields. But it works perfectly fine in foreground. I'm not sure what am I doing wrong. Pls suggest.............I'm not using any front end FMs...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT RKAEP000 via selection-screen&lt;/P&gt;&lt;P&gt;         USING SELECTION-SCREEN 310&lt;/P&gt;&lt;P&gt;         with p_tcode eq 'KOB2'&lt;/P&gt;&lt;P&gt;         WITH  SELECTION-TABLE seltab&lt;/P&gt;&lt;P&gt;         TO SAP-SPOOL WITHOUT SPOOL DYNPRO&lt;/P&gt;&lt;P&gt;         AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044011#M420597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044012#M420598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should syntax similar to what is below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: number TYPE tbtcjob-jobcount, 
      name TYPE tbtcjob-jobname VALUE 'JOB_TEST', 
      print_parameters TYPE pri_params. 

... 

CALL FUNCTION 'JOB_OPEN' 
  EXPORTING 
    jobname          = name 
  IMPORTING 
    jobcount         = number 
  EXCEPTIONS 
    cant_create_job  = 1 
    invalid_job_data = 2 
    jobname_missing  = 3 
    OTHERS           = 4. 
IF sy-subrc = 0. 
  SUBMIT submitable TO SAP-SPOOL 
                    SPOOL PARAMETERS print_parameters 
                    WITHOUT SPOOL DYNPRO 
                    VIA JOB name NUMBER number 
                    AND RETURN. 
  IF sy-subrc = 0. 
    CALL FUNCTION 'JOB_CLOSE' 
      EXPORTING 
        jobcount             = number 
        jobname              = name 
        strtimmed            = 'X' 
      EXCEPTIONS 
        cant_start_immediate = 1 
        invalid_startdate    = 2 
        jobname_missing      = 3 
        job_close_failed     = 4 
        job_nosteps          = 5 
        job_notex            = 6 
        lock_failed          = 7 
        OTHERS               = 8. 
    IF sy-subrc &amp;lt;&amp;gt; 0. 
      ... 
    ENDIF. 
  ENDIF. 
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044012#M420598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044013#M420599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just check whether u have filled all the mandatory fields for the selection screen 310 in the submit statement or not ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could u send all the field names in that screen 310.. once ( with their mandatory status )..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward helpful answers..&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044013#M420599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044014#M420600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot execute a background job with a job name obtained through JOB_OPEN function call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this is clear.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044014#M420600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044015#M420601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm yet to try ur method. But now r u trying to tell what u have suggested wud not work in background..........pls clarify&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:25:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044015#M420601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044016#M420602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops that was a typo, sorry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot execute a background job with&amp;lt;u&amp;gt;out&amp;lt;/u&amp;gt; a job name which is obtained through JOB_OPEN function call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this is clear.  The background process needs a job to execute right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 07:58:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044016#M420602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T07:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044017#M420603</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;Thanx for clarifications. But when run with job name creation, while creating the job name I'm getting this below error....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"BTC_A2C_CLEAN_ZOMBIE_LOG" has already been declared.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 08:10:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044017#M420603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T08:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044018#M420604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paste your code, to let me understand what you did&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 08:12:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044018#M420604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T08:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044019#M420605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnx, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry it looks like some config problem  I didnt get tht error for FM job_open in other boxes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 08:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044019#M420605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T08:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044020#M420606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you problem is solved, don't forget to update this thread as solved and possibly reward if you thought it really helped.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2007 08:19:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044020#M420606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-08T08:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044021#M420607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay, I was trying out other options but in vain. tried using open_job,&lt;/P&gt;&lt;P&gt;job_submit, close_job. Nothing is working for me. Everytime I get an error saying make an entry to all required fields and as far as my knwledge there r no other mandatory fields and it works well in foreground.  What else cud be wrong any guessessssssssssssss??????????????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 08:57:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044021#M420607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T08:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044022#M420608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi chesat &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u just compare ur code with this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using JOB_OPEN,JOB_SUBMIT,JOB_CLOSE&lt;/P&gt;&lt;P&gt;Demo Program:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;REPORT  YJob  . &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA : v_jobhead LIKE tbtcjob.&lt;/P&gt;&lt;P&gt;DATA : v_jobcount LIKE tbtcjob-jobcount.&lt;/P&gt;&lt;P&gt;DATA : v_eventparm LIKE tbtcjob-eventparm.&lt;/P&gt;&lt;P&gt;DATA : v_flg_released TYPE c.&lt;/P&gt;&lt;P&gt;DATA: e_error.&lt;/P&gt;&lt;P&gt;DATA: running LIKE tbtcv-run.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TYPES: esp1_boolean LIKE boole-boole.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CONSTANTS: esp1_false TYPE esp1_boolean VALUE ' ',&lt;/P&gt;&lt;P&gt;           esp1_true  TYPE esp1_boolean VALUE 'X'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CONSTANTS: true  TYPE boolean VALUE esp1_true,&lt;/P&gt;&lt;P&gt;                          false TYPE boolean VALUE esp1_false.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PARAMETERS: v_jobnam LIKE tbtcjob-jobname,&lt;/P&gt;&lt;P&gt;            v_report LIKE sy-repid,&lt;/P&gt;&lt;P&gt;            v_varian LIKE  raldb-variant,&lt;/P&gt;&lt;P&gt;            v_uname  LIKE sy-uname.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;add the new job&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'JOB_OPEN'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           delanfrep        = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            jobname          = v_jobnam&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            jobcount         = v_jobcount&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            cant_create_job  = 1&lt;/P&gt;&lt;P&gt;            invalid_job_data = 2&lt;/P&gt;&lt;P&gt;            jobname_missing  = 3&lt;/P&gt;&lt;P&gt;            OTHERS           = 4.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    e_error = true.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'JOB_SUBMIT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              authcknam               = v_uname&lt;/P&gt;&lt;P&gt;              jobcount                = v_jobcount&lt;/P&gt;&lt;P&gt;              jobname                 = v_jobnam&lt;/P&gt;&lt;P&gt;              report                  = v_report&lt;/P&gt;&lt;P&gt;              variant                 = v_varian&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              bad_priparams           = 1&lt;/P&gt;&lt;P&gt;              bad_xpgflags            = 2&lt;/P&gt;&lt;P&gt;              invalid_jobdata         = 3&lt;/P&gt;&lt;P&gt;              jobname_missing         = 4&lt;/P&gt;&lt;P&gt;              job_notex               = 5&lt;/P&gt;&lt;P&gt;              job_submit_failed       = 6&lt;/P&gt;&lt;P&gt;              lock_failed             = 7&lt;/P&gt;&lt;P&gt;              program_missing         = 8&lt;/P&gt;&lt;P&gt;              prog_abap_and_extpg_set = 9&lt;/P&gt;&lt;P&gt;              OTHERS                  = 10.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      e_error = true.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'JOB_CLOSE'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              EVENT_ID                    = IC_WWI_WORKPROCESS_EVENT&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              EVENT_PARAM                 = V_EVENTPARM&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;              EVENT_PERIODIC              = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                jobcount                    = v_jobcount&lt;/P&gt;&lt;P&gt;                jobname                     = v_jobnam&lt;/P&gt;&lt;P&gt;                strtimmed                   = 'X'&lt;/P&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;P&gt;                job_was_released            = v_flg_released&lt;/P&gt;&lt;P&gt;           EXCEPTIONS&lt;/P&gt;&lt;P&gt;                cant_start_immediate        = 1&lt;/P&gt;&lt;P&gt;                invalid_startdate           = 2&lt;/P&gt;&lt;P&gt;                jobname_missing             = 3&lt;/P&gt;&lt;P&gt;                job_close_failed            = 4&lt;/P&gt;&lt;P&gt;                job_nosteps                 = 5&lt;/P&gt;&lt;P&gt;                job_notex                   = 6&lt;/P&gt;&lt;P&gt;                lock_failed                 = 7&lt;/P&gt;&lt;P&gt;                OTHERS                      = 8.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        e_error = true.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        DO.&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'SHOW_JOBSTATE'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              jobcount               = v_jobcount&lt;/P&gt;&lt;P&gt;              jobname                = v_jobnam&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ABORTED                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FINISHED               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        PRELIMINARY            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        READY                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             running                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        SCHEDULED              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;           EXCEPTIONS&lt;/P&gt;&lt;P&gt;             jobcount_missing       = 1&lt;/P&gt;&lt;P&gt;             jobname_missing        = 2&lt;/P&gt;&lt;P&gt;             job_notex              = 3&lt;/P&gt;&lt;P&gt;             OTHERS                 = 4.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;          IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;            e_error = true.&lt;/P&gt;&lt;P&gt;            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;          IF running = space.&lt;/P&gt;&lt;P&gt;            EXIT.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDDO.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are u  using any ALV display while prinitng..??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 09:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044022#M420608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T09:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem submitting a report in back ground</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044023#M420609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;job output is in ALV . It's from std trans cji5.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 09:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-submitting-a-report-in-back-ground/m-p/2044023#M420609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T09:17:31Z</dc:date>
    </item>
  </channel>
</rss>

