Background activiation of report S_ALR_87013564

Hi All,
We have any programme running time is 10 minutes. In this report S_ALR_87013564 data selection is increasing and now it gives maximmum run time exceeded message and shut down processing.
1) As we want to run it on day time only is there any way to activate its background running option which is deactivated stage by default.
2.1) First option is increase per user space allocation and
2.2)  Second option is Report painter will these option works user friendly.
3) Or please suggest any other relevant solution for it.
Thanks in advance.
Regards,

Please check if this helps.
1. Goto transaction CJEB.
2. Give the name of the report and create a variant. Execute.
3. You will get a screen similar to the normal report (except this time you will have the execute in background option enabled). Enter the required data.
4. Select Execute in background.
4. Then follow the procedure you do for running other reports in background.
Please let us know if this serves your requirement.
Regards,
Ajinkya

Similar Messages

  • How to schedule the background job if report have Presentation server files

    Hi All,
    I have searched the forums and found , the way for the scheduling the background job if report selection screen have the presentation server file input.
    1. Using the Open data set method.
    And my client is not OK with Open dataset way, it there any other way to do this, As we are using the EXCEL file.
    Thanks and Regards,
    Bharani

    Hi,
    As said above it is generally not possible. Since your client most obviously doesn't like graphical background I would recomend storing data as till now, but show it with your own report in more userfriendly way. For example:
    - as ALV Grid
    - in excel with use of OLE either as embedded in SAP or new window (check transaction OLE for example)
    - with use of webdynpro
    BR
    Marcin Cholewczuk

  • Background image in reports?

    can we place a background image in reports and alv's?
    if so, tell me the process.

    Hi Shahid,
    go through the following links :-
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/abap/how%20to%20generate%20and%20display%20svg%20graphics%20in%20abap%2c%20part%201.article
    I think it will be helpful.
    Reward points if helpful
    Regards.
    Srikanta Gope.

  • Layout variant is not working in background in ALV report

    Hi,
    I have one LAV report to send the report output through mail in foreground and backgroud.Final internal table is having 46 fileds to display the output.But here user is saving the layout variant and sending that layout variant output to mail id in excel format with zip file.Its working in foreground.But in background its not working.Even if we select the layout variant,its sending all the 46 fileds to mail.
    here we have used the below FM to update the fieldcat itab.
    CALL FUNCTION 'REUSE_ALV_GRID_LAYOUT_INFO_GET'
        IMPORTING
          et_fieldcat   = it_fieldcat[]
          es_variant    = v_disvariant
        EXCEPTIONS
          no_infos      = 1
          program_error = 2
          OTHERS        = 3.
    In for ground NO_OUT = 'x' for non selected fields and NO_OUT = ' ' for selected fields.
    But in background NO_OUT = ' ' for all the fileds, even if we select the layout variant.
    Please suggest me  with the solution.
    Regards,
    Jayaram

    hi ,
    Do according to this
    SORT t_ekbe by belnr.
      if  t_ekbe[] is not initial  .
          SELECT  MBLNR
            BWART
            SMBLN
            ERFMG   " This is the new added field
            erfme     " This is the new added field
          INTO CORRESPONDING FIELDS OF TABLE t_mseg
        for all entries in t_ekbe
          from mseg
          where mblnr = t_ekbe-belnr
          AND   bwart = '101'.
      endif.
    after this
    loop at t_ekbe .
    loop at t_mseg  where mblnr  = t_ekbe-belnr .
      t_ekbe-ERFMG = t_mseg-ERFMG .
    t_ekbe-erfme =   t_mseg-erfme  .
    modify t_ekbe transporting ERFMG  erfme .
    clear t_mseg .
    endloop.
    clear t_ekbe .
    endloop.
    Regards
    Deepak .

  • Display title in spool generated in background processing of report

    Hi All,
    I am working on a report which uses splitter container to display report details as title in one part of the container and ALV report (using OOPS ALV) in the other part when executed in foreground.
    I have referred the following links and added code accordingly to execute the report in background.
    OOps ALV in background
    CNTL_ERROR while running a report in background mode
    But in the spool that is generated, I am able to see only the ALV output in the form of classical report without the report details as title. To add the tilte I have tried using "top_of_page" event, but it is not working. Please let me know how this can be achieved.
    Thanks & Regards,
    Ankit

    Hi Sandeep,
    Check if you can create batch job to run for S_ALR_87013558 using SM36
    The Program name is GP8YTY7TBR1TYRPCIPKAC6X9GZG
    Please check with ABAP.
    Regards,
    Nitin

  • Close Reports Background Engine from reports

    Hi,
    I have a report that calls another report via SRW.run_report. Qhen the other report is called, Reports Background Engine opens and stays open, even after closing the called report.
    How to programmatically close Reports Background Engine when closing the report. I have read on the forum some procedure to close it from "Forms", but not from report.
    Thank you,
    J

    you can not close the RBE from reports as it would require a report to be executed ... i guess you get the problem.
    the only way to close the RBE is from forms.
    thanks,
    ph.

  • Pass parameter to background job from report

    Hi All,
    I have following requirement.
    I am executing a Report. At end of report I am executing an event.
    On the bases of event a background job runs.
    Problem is that, I want to pass one field data from report to background job.
    I already tested SET PARAMETER/GET PARAMETER is not working.
    Is there any way any one can suggest, without using Tables.
    Regards

    Hi,
    If you submit via job it will not be executing the program ..After SUBMIT statement the control will come to the program immediately..
    Check this example..
    DATA: p_jobcnt LIKE tbtcjob-jobcount,
          l_release(1) TYPE c.
    Open the job
    CALL FUNCTION 'JOB_OPEN'
         EXPORTING
              jobname          = 'ZMY_OBJ'
         IMPORTING
              jobcount         = p_jobcnt
         EXCEPTIONS
              cant_create_job  = 1
              invalid_job_data = 2
              jobname_missing  = 3
              OTHERS           = 4.
    Submit the job.
    SUBMIT ztest_program VIA JOB 'ZMY_OBJ' NUMBER p_jobcnt
           TO SAP-SPOOL WITHOUT SPOOL DYNPRO
           WITH destination = 'LOCL'
           WITH immediately = space
           WITH keep_in_spool = 'X' AND RETURN.
    Close the job.
    CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
              jobcount             = p_jobcnt
              jobname              = 'ZMY_OBJ'
              strtimmed            = 'X'
              prdmins              = 15
         IMPORTING
              job_was_released     = l_release.
    Thanks,
    Naren

  • Background execution of report

    With same output device and format (X_65_512/2)
    , the report when executed in background , the spool output is fine, in development server. However as I  do the same in quality server, the last few columns are chopped off(not displayed)
    what can be the likely reason?

    Hi,
    is the list ALV? any layout active but not transported latest version?
    ... just  o n e  possibility.
    Regards,
    Clemens

  • Background Scheduling Z Report

    Hi,
    I have developed one report , it can output its result in alv report and excel file, So my requirement is to schedule the report and in background only email the report to the specified email id's. How can I achieve functionality of background scheduling and automatic email.
    I know we can do background scheduling with SA38 or SM36/SM37 but upon scheduling it is not saving my excel file at desired location.
    Ankesh

    You should search forums about this....
    You will need to save to the SAP Application server (in a folder which has write permission for SAP jobs) and possibly FTP to some shared drive within the network.  Local PC, local MS network, like C:\, D:\, etc. is not visible to a background job, since there is NO GUI/PRESENTATION server involved in a background job.  Outside of MS Office, an .XLS file is an unknown file type, probably....  how do you think you're creating a .XLS file in a background SAP job?

  • Table name for background job with report, variant and step user id list.

    Hello All,
    I need to generate the list of scheduled backgroung job with the list of Report Name, Variant, Step User Id called. Please any one tell the SAP Table name from which I can get these data.
    Thanks in Advance,
    Amit

    Hi Rohit,
    Thanks for your reply. But from TBTCO, i can't find program/report name and variant. Just the list of background job i can see.
    Regards,
    Amit

  • Background execution of reports

    Hi Experts,
      I have a report the output of which is an ALV.
      Now If the report is run as such, the o/p is correct.
      But if I run the same report in background, the layout is coming incorrect.
      Although the titles of ALV (eg. article, site, storage loc ) are coming correct,
      the values of these are being skipped.
      The o/p is perfectly correct in foreground.
    Thanks,
    Ravi

    Ravi,
    I think u got this problem in standard report or in any z-report that is copied from standard one.
    It happens in some standard reports while we run it in background. If we run it in foreground, it will give the expeted results, if its run in Background, it will hide some fields while its begin displayed on the screen.
    <b>if u observe the difference between these two runs, one flag will be set, that depends on the standard program.If u can make the flag value to get fixed( with the value when it is run in the foreground), then the report vl be having no difference for foreground and backg</b>round.
    for example, I handled CJI3 (Project Actual Cost Line items), if u run it in backgound, it will hide some fields from display, if u runit in foreground, it will disply all the fields. For this, I have a flag, which is causing the report to hide some fields from display, when its run in background.
    Hope this hint may help u.
    Regards,
    Sujatha.

  • How to make a background in a report exported in html format

    Hi every body,
    i made a report using ireport in the design phase and jasperReport 1.3.1 api to generate the report in html format, the problem is that i can't see the background when i run the application :(
    so how to display the background in the html report ?
    tahnks in advance.

    Hi Nav,
    You can create a lov using the APEX_ITEM.SELECT_LIST in report query. http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_item.htm#insertedID12
    For e.g.
    http://apex.oracle.com/pls/otn/f?p=50942:63
    Thanks,
    Manish

  • Background scheduling of Reports

    Dear All,
    Is it possible to schedule the Query designer reports in background.
    we are in BI 7 version.
    I know that we can do it by using web templates.
    But iam not sure with normal reports.
    pls tell me.
    Thanks
    Suri

    Hi Suri,
    You can use the broadcaster to schedule the execution of queries, workbooks and views too.
    http://help.sap.com/saphelp_nw04s/helpdata/en/3a/0e044017355c0ce10000000a1550b0/content.htm
    Hope this helps...

  • Problem of background running of report

    Hello folks,
                I have one report,which updates Z table(CUSTOM TABLE).when i run this program in foreground ztable(CUSTOM TABLE) <b>updation takes place and output is correct</b>.But when i run this program in <b>BACKGROUND</b> ,<b>THAT Z TABLE</b>(Custom table) <b>can not be updated</b> and all problem starts from there.I have used "COMMIT STATEMENT "  TO UPDATE THE ZTABLE IMMEDIATLY.tHIS STATEMENT IS CAUSING ANY PROBLEM?PLEASE HELP ME.

    Hi Nirad,
    while updating to ensure that nobody are using the table you can lock the lock by using SAP locking mechanisam.
    for this you create a lock object in ABAP Dictionary.A lock object contains the database table for which you want to specify a shared lock. When you activate the lock object obj , this generates two function modules with the names ENQUEUE obj and DEQUEUE obj. These function modules perform the explicit locking or releasing of SAP locks in an ABAP program.
    call function ENQUEUE obj before updating the table and DEQUEUE obj before commit.To formulate a lock condition, you have to specify values for the primary key fields of the table contained in the lock object in the function modules.
    Please reward points if you find this useful.

  • WMS related background running job reports

    Hi All,
    Anyone could help to list all the WMS/Shipping/TMS related background jobs' reports?
    such as:
    1. create the TO -> RLAUTA10;
    Thank you very much,

    Hi,
    Very easy, go to se38 and enter RL*. You will then see all WM related reports.
    MdZ

Maybe you are looking for