How to control automatic deletion of spool requests while check printing

hi friends
When i do cheque payment run (F-58), my spool getting deleted after printing. In my User setting SU01,
Delete after output is not selected, still it is getting deleted from spool. We have informed users to uncheck this option once the spool request is created at the end of this run. But our users feel there should be some way to disable/uncheck or save this option automatically rather than changing each spool request settings everytime the posting is run.
Please could you suggest me how to disable/uncheck this option 'Delete after printing if no errors' permanently. I have done the necessary settings in user master record but still it's the same.
please advice.
Regards,

Hi Nathan,
Solution is only to maintain in SU01 , its picking from there only.
May be your  user needs to log-off once status is changed in SU01, ask him to check what it is showing for him in SU3.
So if you deactivate  option in SU01/SU3 , it should work as same is working in our environment.
You can test yuorself using below steps
1) Login with your ID , create one spool request
2) check the status in SP01 and check if its ticked  or not
3) change the tick mark in SU01 , logoff. and login again .
4) create another spool request
5) check status now for new spool request in SP01 and check if it is ticked.
Regards,
Edited by: Gagan Deep Kaushal on Oct 31, 2010 5:00 PM

Similar Messages

  • How to delete the spool request number

    HI Masters,
                My program creates a spool request. And i want to delete that spool request number? How to delete that??
                  Thanks in advance.

    hi
    good
    The program are RSPO0041 or RSPO1041.
    This is handy whenever you encounter a user who managed to create a lot of spool requests which are choking your system.
    Deleting them with SP01 will be too slow and you will get time out if it exceed the online time limit specify by your basis people.
    <b><REMOVED BY MODERATOR></b>
    thanks
    mrutyun^
    Message was edited by:
            Alvaro Tejada Galindo

  • How I set the auto delete old spool request

    Hi
    I would like to know , how to auto delete old spool request. Have any option in SAP.
    I want spool requests on server for 3 days only.
    Pls suggest.
    Tapovardhan

    As a default background job SAP schedules<b> RSPO0041</b> program in background, this program's variant has the <b>Minimum age in days</b> value.
    Can you check with what variant this program is running. 
    This program needs to be scheduled daily with <b>Minimum age in days</b> field.
    Regds
    Manohar

  • How to print Spool requests for cheque printing sequentially

    Dear All,
    I am making vendor payments and printing cheques using F-58. It automatically creates a spool requests at the end of the transaction. When i complete all my payments and go to SP01 for viewing spool requests, the last request appears at the top of the list.
    If i select 3 consecutive requests and print them at a time, the last request gets printed first on the first cheque number and the first request gets printed on the last cheque number.
    This results in anomaly in the cheque number assigned in the system and the printed cheque as the last payment is printed on the first cheque.
    I am using dot matrix printer with  page format fixed for cheque specifications. The cheques are printed properly as per the format except the order of printing.
    Kindly let me know how to print multiple requests sequentially from the spool requests list such that the spool request number printed matches with the serial cheque numbers.
    Regards,
    SAP_2009

    Hi,
    I understod your issue.
    Whenever you posted multiple payment documents, and after that if you want to take cheque printouts sequentially by using more spool requests.........there is a way to sort out this issue.
    1) Select all of your spool requests and click on Sort in ascending Order (CtrlShiftF5) and click on Print directly (CtrlShiftF8). By doing this you will get the cheque printouts sequentially according to your payment document sequence.
    Hope this will help you
    Assign ********, if it solved your problem.
    Thanks,
    Srinu

  • How do you preview using a spool request number

    How do you preview using a spool request number?
    I have an application in which I have accumulated the results from several smartforms into one spool request. I have the spool request number, and am printing it using function RSPO_RPRINT_SPOOLREQ.
    I need to be able to preview the contents of the spool request before printing. I can not preview when generating the smartforms, as that involves several previews, and I need to preview once only per spool request.
    I have been trying to use RSPO_RDISPLAY_OUTREQ but it dumps immediately (line 47) with field symbol <FTSP01> not assigned.
    Suggestions?

    *With no faction module "COM_SE_SPOOL_DISPLAY", try this simple code, you can display the form *type spool (you also can put the code in a function module):
    REPORT  ypl_test_display_spool MESSAGE-ID zm_print.
    PARAMETERS: rqident LIKE tsp01-rqident,
                            rqdocty LIKE tsp01-rqdoctype.
    *--- there may be more types need to separate..., so use case...
    CASE rqdocty.
      WHEN 'OTF' OR 'SMART'.
        PERFORM display_form.
      WHEN OTHERS.
        PERFORM display_others.
    ENDCASE.
    *&      Form  DISPLAY_FORM
          display form type spool...
    FORM display_form.
      DATA: wstr_otf_control TYPE itcpp.
      DATA: wtbl_buffer TYPE TABLE OF soli WITH HEADER LINE.
      DATA: wtbl_otf TYPE TABLE OF itcoo WITH HEADER LINE.
      DATA: wstr_retcode LIKE itcpp.
    *--- return spool raw data
      CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'
        EXPORTING
          rqident              = rqident
        TABLES
          buffer               = wtbl_buffer
        EXCEPTIONS
          no_such_job          = 1
          job_contains_no_data = 2
          selection_empty      = 3
          no_permission        = 4
          can_not_access       = 5
          read_error           = 6
          type_no_match        = 7
          OTHERS               = 8.
      IF sy-subrc <> 0.
        MESSAGE s013 WITH text-001.
        EXIT.
      ENDIF.
      LOOP AT wtbl_buffer .
        wtbl_otf-tdprintcom = wtbl_buffer(2).
        wtbl_otf-tdprintpar = wtbl_buffer+2.
        APPEND wtbl_otf.
      ENDLOOP.
    *--- some data to pass to this parameter, may not need...from SP01...
      wstr_otf_control-tdcopies = 1.
      wstr_otf_control-tdappl = 'TX'.
      wstr_otf_control-tddest = 'LOCL'.
      wstr_otf_control-tdpages = 0.
      wstr_otf_control-tdnoprint = 'X'.
      CALL FUNCTION 'DISPLAY_OTF'
        EXPORTING
          control = wstr_otf_control
        IMPORTING
          RESULT  = wstr_retcode
        TABLES
          otf     = wtbl_otf.
      IF wstr_retcode IS INITIAL.
    *--- message...
      ENDIF.
    ENDFORM.                    "DISPLAY_FORM
    *&      Form  display_others
          display other types, may more types needed to separate...
          you can refer current version of SAP report RSPOLST2
    FORM display_others.
      CALL FUNCTION 'RSPO_DISPLAY_SPOOLJOB'
        EXPORTING
          rqident              = rqident
        EXCEPTIONS
          no_such_job          = 1
          job_contains_no_data = 2
          selection_empty      = 3
          no_permission        = 4
          can_not_access       = 5
          read_error           = 6
          OTHERS               = 7.
      IF sy-subrc <> 0.
        MESSAGE s013 WITH text-001.
      ENDIF.
    ENDFORM.                    "display_others

  • Deletion of Spool Request

    Hello,
    My spool is full Could i delete old spool request if i deleted is there any impact on system ??/
    the spool request now reached into 31,901  so what steps i have to take please guide.
    Regards
    Deepak
    Edited by: DEEPAK Somvanshi on Jul 6, 2010 6:35 PM

    Hi Deepak,
    1. Check whether background job SAP_REORG_SPOOL with the report RSPO0041/RSPO1041 is running properly or not.
    2. If running properly, Goto t-code SP01, enter from and to dates for "Date Created" and execute. Spool requests get displayed. Select any one spool request and check the request attributes(F8). If you're able to see date under "deleted on" as either 12/31/2099 or 01/01/2100, this is due to kernel problem. For this you've to apply the new kernel as per the below note.
    Note 1423484 - Wrong date on cover page for spool requests
    Hope this would help you.
    Thanks & regards,
    Mogileeswar

  • Using her PC whilst in VNC mode. Control-Alt-Delete is the request but this doesn't work. Any clues?

    Using my iMac, I'm trying to log onto another PC at a remote location whilst in VNC mode. Control-Alt-Delete is the request, but this doesn't work. Any clues??

    Thanks, great work... I think that's where I was headed!

  • How can i automatically delete doubel pictures from Iphoto?

    how can i automatically delete "double pictures" from Iphoto?

    There are several article that talk about this, here is one:
    http://macs.about.com/od/appleconsumersoftware/ss/Iphoto-Libraries-Create-And-Po pulate-Additional-Iphoto-Libraries_5.htm

  • How can I undo the "erase iphone" request while my iphone is not online yet?

    My iphone 4 has been stolen days ago.
    I posted "erase iphone" request through iclouds webpage by mistake.
    Before "erase iphone", I'd like to try "play sound" and "lost mode" first.
    How can I undo the "erase iphone" request while my iphone is not online yet? Because if the phone was online again, it will be erased immediately.

    Hello RationalPuppet
    If you go to Settings > Music and then toggle off Show All Music that will prevent from seeing your downloaded music. I have also provided other articles for hiding purchases and even deleting purchases from iTunes in the Cloud.
    Download purchased music to your iPhone
    http://support.apple.com/kb/index?page=tidetail&product=iphone&locale=en_US&tag= Music
    iTunes Store: Hiding and unhiding purchases
    http://support.apple.com/kb/HT4919
    iTunes Store: How to delete songs from iCloud
    http://support.apple.com/kb/HT4915
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • How to find out which job delete old spool requests?

    Dear Experts,
    We have a problem with spool requests being deleted automatically, we've checked job RSPO1041 and made sure it was not scheduled to run, but somehow spool requests are gone. We also checked all the jobs on the day requests were deleted but nothing stands out. I would really appreciate it if any of you can help us find out which job is doing this or how to avoid requests being deleted.
    Thank you!
    Ling

    Hi,
    Please check the value of parameter 'rspo/req_lifetime' as it decides the lifetime of the spool requests which are generally stored in TemSe.Go through note 48400,this may help you understand how spool requests are stored and reorganized.
    Thanks

  • Automatic of deletion of Spool requests

    Hi,
    Scheduled job SAP_REORG_SPOOL is running every night on our Production system. 
    Yet this morning we discovered our Spool database was full.
    I've checked note 64333 and confirmed that the following parameter is set:
    c_def_pexpi   like pri_params_pexpi   value '8
    And yet still our spool files are not being automatically deleted.
    Could anyone offer any advise on what I can check to try track down the problem please?
    Thank you.

    Hi,
    As of the beginning of the year 2011, the report RSPO1041 no longer deletes spool requests. The job log contains a message stating that the factory calendar cannot be read.
    Please follow the SAP note number 1532398..
    As per the above note " The factory calendar used in the variant of the report RSPO1041 is invalid. As of January 1, 2011, this problem will occur more frequently because the factory calendars delivered by SAP in 1996 become invalid on December 31, 2010."
    Please follow the instruction...
    1. Use transaction SCAL to change the validity of the factory calendar.
    2. After you implement the corrections contained in the above note, the report RSPO1041 responds as follows in the error  It uses all of the days and not just all of the working days of the factory calendar to calculate whether or not a spool request is to be deleted.
    After you implement the above said note, the report RSPO1041 will also no longer terminate in the background because it tries to delete its own spool request.
    Regards
    Bhuban
    RKFL

  • How to control the processing of the request?

    I have something like this:
    <h:inputText value="#{sessionController.currentRowData.settlementId}"/>
    <h:inputText value="#{sessionController.currentRowData.remark}"/>
    <h:inputText value="#{sessionController.currentRowData.fromDate}">
         <f:convertDateTime pattern="yyyy-MM-dd"/>
    </h:inputText>
    The currentRowData object is the currently selected row of a data model.
    Problem is, the model is updated with the value of the components whenever the form is submitted,
    and regardless of whether the value of the components has changed or not.
    (Actually, the behaviour depends on the type of the property, as ie. Date is treated differently from String or int.)
    This causes unwanted changes to the model, and, if a new row is selected, it will at once
    be updated with the values of the previous row (from the current state of the components).
    I want the above components to update the model only if the user wants to, ie. only if a
    specific command button is pressed.
    How to control this?
    Let a PhaseListener check the request, and do renderResponse on the FacesContext if
    the "selectRow" request is found in the request parameter map?
    This is not very elegant, and it does not seem to work either. If setting PhaseId to APPLY_REQUEST_VALUES, the action itself (selecting row)
    will not be executed, and if using UPDATE_MODEL_VALUES, the value of the components is set from the request (even if unchanged), and not updated according the the new data in the model (the rendered values does not reflect the values of the properties of the object the components are bound to)
    Another solution might be to let the "disabled"-attribute of the inputText tags be dependent on whether
    a specific "edit"-button has been pressed (disabled inputText tags are rendered correctly after a row change).
    But a better solution would to have the ability to control the behaviour, something like
    "for these components, no updating of state should be done unless the condition c is true"
    (I'm not sure what condition this could be, though).
    Whatever solution I may end up with, the real problem seems to be that the state (and hence the model)
    is updated from the request also in the case where the value in the request is the same as the current value of the component.
    Or maybe there is something I have missed here?
    erik

    This one is a tricky problem - a side-effect of JSF doing a lot of things automatically is that sometimes it does too much.
    I don't have a great solution, but here's a couple of ideas:
    (1) Try using multiple <h:form>s on your page (not nested one inside the other, but separate). Data will only get updated in the form that contains the button that got pressed.
    (2) Use an intermediate model layer, and discard updates as appropriate.
    Neither of these are beautiful solutions - the second is way ugly - but they might help. Long-range, I'd love to see something like "subforms" supported in JSF that can provide finer grained control over what gets processed (validations, model pushes, etc.) and what doesn't without resorting to the blunt hammer of multiple HTML forms.
    I'm a little confused about "the model is updated with the value of the components whenever the form is submitted, and regardless of whether the value of the components has changed or not.", because JSF is checking the old value and using ".equals()" to see if its changed. Note, however, that it's not caching the old value across the request, but simply going back to the model on the subsequent request, which may (or may not) explain the behavior you're seeing.
    -- Adam Winer (EG member)

  • How to get data from OTF spool request number

    Hi all,
            How to get OTF Data from the spool request number (OTF)?
            How to create spool request from the OTF Data?
    Regards,
    Sunil Kumar

    Hi,
    Check this links:
    http://www.sapdev.co.uk/reporting/rep_spooltopdf.htm
    Sending Mail from SAP
    https://wiki.sdn.sap.com/wiki/display/sandbox/SendMailwithPDFAttachment?showChildren=false#children

  • How do I automatically delete a .ps file after creating a pdf?

    Hi all! I vaguley remember in the past that there is a preference to automatically delete a .ps file after creating a pdf. Can someone remind me of how to do this? I'm using Distiller version 9.2.0. Thank you so much!
    Julie
    PS: I'm creating the .ps file from Quark 7, if that makes a difference.

    I am unaware of any feature allowing automatic delete of .PS files.
    The adobePDF print driver which has been removed in OSX.6.x (Snow Leopard) That you choose when ina Document would go through the following steps in the background this made it slow.
    create .ps File (hidden)
    Checksum Verify the .ps File
    Open Distiller in background (hidden)
    Create Pdf
    Checksum Verify the .pdf File
    shut down Distiller in Backgroun (hidden)
    Delete .ps File (hidden)
    Pdf suddenly appears
    If at any point in this chain something dies the pdf was not made.
    Actually in prior OS to X.3.x the print driver provided for my Hp Inkjet, it was actually better to go to print menu, and choose save as  postscript, then drop the postsript file on distiller and creat the PDF. or just open the ps in Acrobat.
    with the PRint Drive provided for my HP Inkjet for X.3 it was changed to  create Postcsript file from PDF.  In the start having the PDF button on print menu. The pdf's were not as good as those created in the AdobePDF driver. But were aceptable for most purposes.

  • How to control automatic rescheduling of sales order?

    Hi all,
    Could u please help me out to configure  to control  automatic rescheduling of sales order...
    eg.  I created a order on 13th March  and the material was not available, then its was kept pending.  But when the stocks got added on 19th March,  the sales order got automatically rescheduled for 19th March.
    I wish to stop this.   Might have to do something  with setting planned indepentent requirements which seems updating  the order automatically.
    Can anyone urgently help me out to control this automatic rescheduling?
    Thanks in advance.

    Hi Ravey
    For your query , it is better not to change the Include sales requirements in OVZ9 as it will affect the entire sales order . But as per your ticket you have to customize in OVZ9 by not checking the Include sales requirements box only
    But instead of that it is advisable to run V_V2 and change the date manually
    Regards
    Srinath

Maybe you are looking for