How to stop background job to print papers

Hi all,
I have background job of forms running every day and its printing papers. My requirement is to stop the printing of papers in the background job.
How to do this .
i am using CALL FUNCTION 'GET_PRINT_PARAMETERS and    NEW-PAGE PRINT ON PARAMETERS v_params NO DIALOG.
    NEW-PAGE PRINT OFF.
Thanks
Krupali

Hi,
<li>Set the below before you call NEW-PAGE PRINT ON
lw_pripar-prrel = space.
lw_pripar-primm = space.
<li>Call NEW-PAGE PRINT ON like below
    NEW-PAGE PRINT ON
      NEW-SECTION
      PARAMETERS lw_pripar
      ARCHIVE PARAMETERS lw_arcpar
      NO DIALOG.
Thanks
Venkat.O

Similar Messages

  • Stop a job from printing

    Hope Experts how are you today?
             One of our users created a job SD_203_Z_AUTO_DEL.  Everytime this jobs runs it prints out. She would like to stop this job from printing. Is there anything in SM37 job overview that I need to change. If not in SM37 than were do I go. I see that SU01 under Spool Control OutputDevice is QU6, but if I change this than she won't be able to print anything. Sorry for the novice question. I don't spend alot of time in SAP these days........   

    Using transaction SM37, you can select the job from the list and select Job -> Change from the menu.  Select the Step button, which will list the steps in the job.  Select the step (program) that creates the output and select Step -> Change from the menu.  There should be a Print Specifications button at the bottom of the screen.  Select this button and then select the Properties button.  Change the Time of Printing to 'Send to SAP spool' and save all of your entries.

  • How to stop Batch Jobs

    Hi Gurus,
             How to stop Batch Jobs
    Thanks
    Dave

    Dave
    You could cancel the Job in SM51 transaction. Choose your PID from SM51 and go to menu-->choose cancel without core. It takes some time to cancel the job completly.
    Please check this link
    how to cancel or change the background job which is scheduled
    Hope this helps
    Thnaks
    Sat

  • How to monitor background jobs automatically

    Hello,
    How to monitor background jobs automatically
    (we have more then 100+ jobs in a month and some jobs are repeating 4 - 5 times in a same day )  Now i am searching any salutation for monitor background jobs automatically
    Let me know the  options
    Thanks,
    Suresh

    Hi,
    If your batch job is creating a file in SAP and sending it to another system. These are some things you could do, if you have tools and resources available.
    1) When the job ( SAP program ) runs to create the file, ensure there is no file already existing in the landing zone ( AL11), if it does then do not over write, just throw an error, because the last file created did not leave the landing zone, because the other system or middle were did not pick it up. Usually when the middleware or third party system picks up your file from the landing zone, it may delete the file, so next time fresh file can be picked up. It is always good to have date and time stamp on the file that you create on the landing zone, so we could uniquely track which files were creates, when it was created and transmitted.
    2) Lets say your job created the file in the landing zone, the FTP program or what ever service or tool that you use to pick the file, if it is running as per design, then it should pick it up, if not you need to see why it is not running, usually the FTP softwars like GIS will throw an error if no file is found, and we could track them.
    I am sure there are many other ways to handle if the file really left the landing zone or not. Something to think about. thanks

  • How to debug background job?

    Hi, All:
    How to debug background job.
    Thanks,

    Hello,
      Take a look a this <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/abap+debugger&">blog</a>, it says all what you need to know about strange debuggings (=
    Regards

  • How to do background job on dtp

    how to do background job on dtp

    hi,
    whenever you run the DTP in Process chain it will be running in background.
    hence in BI it is recommended to use PC.
    if you execute it will be running immediately.
    Ramesh

  • How to terminate background job for MRP

    Hi dudes,
    how to terminate background job set earlier and i want start again with fresh scheduling. as user discontinued using the MRP process.
    thanks inadvance for quick response.
    Robert.

    Robert,
    Just though of sharing the alternate way to do this work, instead of DELETE use CHANGE option.
    1. Execute transaction SM37 for the program "RMMRP000" and Job name what you have specified with job status "Scheduled" check box activated. Job Overivew screen appears
    2. Now select the job in the Job Overivew screen and use Menu bar: Job--->Change or Ctrl+F11. Change Job Screen appears
    3. In the change Job screen Hit the function button Start Condition (Green Flag). Start time screen appears.
    4. In the Start time screen define your Job schedule and save the time parameters and save change job screen. Now your job is scheduled with new parameters what you have entered.
    Regards,
    Prasobh

  • How to debug background jobs?

    Hi all,
            How to debug background jobs?
    Rgds,
    Balaji

    Hi ,
    Goto sm37-> select active job , tcode jdbg with out /n or / .
    or goto sm50-> select job program/mode-> program-> debuging.

  • How to Save Background job report out put in local / Network Drive?

    Hello Techies,
    How to Save Background job report out put in local / Network Drive.
    Actually we have option to send mail aftr complete but  i need to save in local drive or network drive .

    Hi ,
    Background job runs in application server , and your local /network drive is basically presentation server. So you cant save it in local /network drive from the job itself. But to download files, you can write the files to the application server using DATASET, in the background and then use the transaction CG3Y in the foreground to download the file.

  • Background job- getting printed automatically

    In my BDC Program i have submitted  Session for Background Processing using
    Submit RSBDCSUB..........
    my code is also given below..The problem is after the user executes the program, background job is automatically going to his Local printer and getting printed. HOw to avoid this?
    CALL FUNCTION 'JOB_OPEN'
           EXPORTING
                jobname          = gf_jobname
           IMPORTING
                jobcount         = gf_jobcount
           EXCEPTIONS
                cant_create_job  = 1
                invalid_job_data = 2
                jobname_missing  = 3
                OTHERS           = 4.
    *-Submit the selected sales orders for changes.
      SUBMIT rsbdcsub AND RETURN
             WITH mappe = v_sess
             WITH von = sy-datum
             WITH bis = sy-datum
             WITH z_verarb = 'X'
             WITH fehler = space
             WITH batchsys = space
             WITH logall = space
             USER sy-uname VIA JOB gf_jobname NUMBER gf_jobcount.
      IF sy-subrc NE 0.
        MESSAGE i999 WITH text-013.
        EXIT.
      ENDIF.
    *-Close job and start immediately.
      CALL FUNCTION 'JOB_CLOSE'
           EXPORTING
                jobcount             = gf_jobcount
                jobname              = gf_jobname
                strtimmed            = 'X'
           IMPORTING
                job_was_released     = gf_release
           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.

    On SUBMIT use
    SUBMIT zxxxxxx TO SAP-SPOOL
                        WITHOUT SPOOL DYNPRO
                        IMMEDIATELY  ' '
                        KEEP IN SPOOL 'X'
                        DESTINATION printer
                         NUMBER  number
                        AND RETURN

  • Stopping Background job in Risk Analysis and Remediation

    Hi,
    We have scheduled background job for Batch Risk Analysis in CC 5.3. Later we have terminated that job for some reasons. But that terminated job status is showing as Stopping from past 3 days. How we can cancel that job?
    We have restated the J2E server but the job is still running. Please suggest me how we can stop that job immediately.
    Regards,
    KKRao.
    Edited by: KKRao_2020 on May 12, 2009 9:14 AM

    Hi,
    If you have access to oracle backend then I can tell an work arround for this issue,
    when the job is in stoping status then you can delete an entry from VIRSA_CC_JOBHST table.
    The command is
    SQL> delete from  VIRSA_CC_JOBHST where jobid=your jobid and status=3;
    After running this command the job in the RAR will show aborted status then the delete button will be enabled and if you want then you can delete that job from RAR screen.
    Regards,
    Sudip.

  • Background Job not Printing TOs immediately

    Hello experts,
    I am having an issue with printing Transfer Orders created by background job, the output requests are sent to the output controller with status '-' . It works when I manually create the TOs or if I run the RLAUTA10 program with my userID in SE38 .
    I have set the background job user default print parameters in SU3 to print immediately.
    Also in the Job step, I have set up the print parameters  to 'print immediately'
    I have assigned printer for sorce storage type & set the indicator to use the source sto type in OMLV, The printer seems to be determined correctly, I've checked the Spool request name & printer in the spool controller, only issue seems to be the print not being triggered immediately.
    Not sure, if there is some other setting that I have to make to be able to print the TOs created by the background job immediately.
    Any help would be appreciated.
    Thanks
    Kris T

    whether the printer which you assigned is configured in SAP (network printer)? or LOCL?
    printing may not happen if LOCL(background job)
    Thanks

  • Background job  step - Printer - Output device  table

    Hi,
    When creating background job, printer- output device also specified for every step. Which table to check for job name and output device combination ?
    Thanks.

    Hi Raj check table TBTCP

  • How to create Background job for Dialog program

    Hi Experts,
    I have copied Standard tcode to Z-tcode (CS12 tcode).
    Now my requirement is to create background job for this program (but program is not a 'E' type its 'I').
    How we can schedule Dialog program to Background.
    Pls suggest me.
    Regards
    SK

    Hi do as below :
    Reefer below :
    Bakcground Job Creation
    You will have to submit your report using Submit statement ,
    then inside the submitted report write open_job.
    Regards,
    Uma

  • HOW TO DUBUG BACKGROUND JOB?

    1)HOW TO DUBUG THE BACKGROUND JOB?
    2) HOW TO DEBUG THE BACKGROUND JOB WHICH IS ALREADY RUNNING??
    CAN YOU PLZ REPLY TO THE ABOVE TWO QUESTIONS....??? URGENT...
    THANKS IN ADVANCE
    SRI

    Hi Srikanth,
      There are two ways to achieve this:-
    1. 1) Fix the break points.
        2) Create job.
        3) Go SM37
        4) Select the job and write "jdbg" in command line.
    2. 1) Use Transaction SM50. This would give you a view of all the background
          processes running in the server.
       2) Choose your background process from the list and got to
          MENU "Program/Mode"->"Program"->"Debugging".
    NOTE: I found the 1st was in one of the replies on SDN only and felt, its a betetr
              option than the second one. Its my perception :).
              Please award points, if you feel the query is solved :).
    Thanks and regards,
    Ravi .

Maybe you are looking for

  • Only plays 1 album at a time/does not autoplay next album? Other issues

    I use my iTouch to rate songs while on my commute. and I am finding two major problems/bugs since nothing I do seems to prevent them and I can't find any mention of it in the user guides or forums. Issue 1) If I am playing a song initiated from Album

  • Is this the best way to test a prime number?

    Ok so I think I finally got my program to work. I tested It with very big 8 digit prime numbers if that means anything. here are 2 Questions about my program" -Is this a way of finding prime numbers? (does the program fulfill its purpose?) and Second

  • Loading international Character using Flat File

    Hi All, We have a requirement in which we want to load Japanese and German Characters using a Flat file. How can we go about it. When I change the file into CSV then only only ???? all displayed in place of the internatioanl character. Any help or do

  • Contract Performance Bank Guarantee

    Dear readers,    With respect to the P.O given to the vendor, vendor will provide CPBG. can any one say where to enter these details of bank guarantee. so that at the time of invoice we can check whether vendor has bank guarantee r not.. regards, Man

  • I purchased some music last year and the year before, how can I find it?

    I bought some music in iTunes over the last couple of years, the problem is I cannot seem to find them here, any help will be greatly appreciated. Thank You