Enquiry Spool Request Error

Greetings.....
                    During T code of VA11 (change Enquiry ) while issueing OUtput , i m getting the error as '
Value of spool attribute  cannot be changed.
Message no. SSFCOMPOSER033
Diagnosis
The spool attribute  has the value . This cannot be changed within the spool job. You tried to change the value in .
System Response
Error message.
Procedure
Do not change the value of this attribute.
Please suggest How to resolve it ..............

Dear PP,
Please consult with your BASIS-ADMIN; as this is not an SD-Error.
Alternatively, You may post your query in to:
[Forum: SAP NetWeaver Administrator|SAP NetWeaver Administrator;
Best Regards,
Amit

Similar Messages

  • Spool request Error

    HI Experts,
                    MOst of the time Users encounter Spool Request Error while giving printouts. So for that Ihave to manualy delete sppol requests from SP01. Is there any where I can Schedule Programm where I set parameters to delete spool requests before reaching its maximum limit. Urgent.
    Thanks.
    Khan

    Hi Khan,
    Try this FM RSPO_R_RDELETE_SPOOLREQ.
    Have a look in this post
    How I set the auto delete old spool request
    Regards,
    Satish

  • Spool request error in downloading 4000 pages

    Hi all
    I have a small doubt regarding the spool request.
    In my scenario I am running the transaction FBL3N
    in the background and I am getting an output of around 4000 pages.
    I need to download it but my Spool request contains only 10 pages
    by default.
    I changed it to 4000 but it gives the error of memoryoverflow.
    I could work by dividing the file into parts say 500 or 1000 but
    is there any way out so that I could download all the pages in
    one go.
    Hope you ppl have got me.
    Please respond asap.
    Thanks in advance.
    Sumit

    hi,
    you can divide data into different spools in following way:
    call function 'GET_PRINT_PARAMETERS'
          exporting
            destination    = 'LOCL'
            copies         = count
            list_name      = 'TEST'
            list_text      = 'Test for multiple spools'
            immediately    = ' '
            release        = 'X'
            new_list_id    = 'X'
            expiration     = days
            line_size      = 79
            line_count     = 23
            layout         = 'X_PAPER'
            sap_cover_page = 'X'
            receiver       = 'SAP*'
            department     = 'System'
            no_dialog      = 'X'
          importing
            out_parameters = params
            valid          = valid.
       IF VALID eq SPACE.
          new-page print on parameters params no dialog.
       endif.
    writes data into spool 1.
    new-page print off.
          new-page print on parameters params no dialog.
    write into spool 2.
    new-page print off.
    thanks,
    anupama.

  • HotNews correction for Y2010 spool request error available

    Dear gurus,
    I became aware of [SAP Note 1422843|https://service.sap.com/sap/support/notes/1422843] which has affected all my systems's spool request reorg jobs.
    It is currently release and patch level independent, so you will all be affected by it as well.
    You can verify this via entries in table SP01 field RQDELTIME = 2099*
    As a kernel patch might take a while (also to download, install, test, etc...) there is a workaround attached to the note until you get there.
    Cheers and best wishes for the new years until 2099..
    Julius

    > ...and the variant provided in this note 1422843 doesn't clean at all....
    Yes, it does not "clean" the spool requests out of the system - it corrects the deletion date symptom so that your reorg job will pick them up again. Dependent on your config, this might take a few days to become "cleaned", as they were before as well.
    Another option is to reorg the spool requests based on the creation date alone. This works fine for "smaller" systems and will protect the spool overflow and number range problem. It will however not correct the other less critical symptoms, so applying the kernel patch at some stage soon is recommended anyway.
    Cheers,
    Julius

  • Graphical Display of spool Request Errors

    HI,
    Can someone help me where I can find the more details for the following processing Category when we graphical display of spool request in SM37
    1) Not Relevant
    2) Inappropiate Status
    3) Error

    Useful for background
    http://www.sappoint.com/basis/bckprsng.pdf
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/08703713bf277ee10000009b38f8cf/frameset.htm
    http://publib.boulder.ibm.com/infocenter/wbihelp/index.jsp?topic=/com.ibm.wbix_adapters.doc/doc/mysap4/sap4x41.htm

  • An error occurred when processing the spool request.  (Possibly due to memory problems)

    Hi SAP,
    My backgroud job is failing with log as shown below
    Job started
    Step 001 started (program ZMRS0065, variant SUS
    Step 002 started (program ZDRS0090, variant SUS
    Step 003 started (program ZFRS0305, variant SUS
    Step 004 started (program ZFRS0300, variant SUS
    Access error
    Job cancelled after system exception ERROR_MESSAGE
    An error occurred when processing the spool request.  (Possibly due to memory problems)
    Kindly help out in this issue
    Regards
    Mohammed

    Hello Mohammed,
    Have you seen any error in your SM21 system log and developer trace of spool work process
    during that time?
    The maximum size when create spool is 2GB.Pls also check if you are creating a spool
    larger than it.
    Best Regards
    Jie Bai

  • Spool request internal error

    Dear All,
    When I am executing a report in background using tcode se38, I am not able to view the output of the report from the spool request .
    When I try to view the contents of the spool request, It simply gives a message
    as follows :
    Request 74837 in system PRD : internal error
    00000040/ in spooler.
    Please advice me on this issue.
    Thanks
    Gaurav

    hello Gaurav,
    it is coming because the columns in spool is exceeding the SAP defined limit of 255. Either you need to create a device type with columns greater than 255 or else use the OSS note: 186603. It has a simple report <b>ZRSPOSHOWLIST</b>  that you need to create in your system. I created this report and now whenever i have such errors I use it to view the spool.
    regards.
    Ruchit.

  • Write the Error log from background Job to the Spool request

    Hi ,
    I have a situation where in i need to capture the error log of a Z program which runs as a background job and write that log into the spool request. My Z program calls runs RSEINB00 program using the SUBMIT statement. When this Job fails the error log can be seen in SM37. But i need this error log to be sent in to a spool.
    I can read the error log using the BP_JOBLOG_READ FM and can also create a spool using the RSPO_SPOOL_OPEN FM.
    The problem is, when the Submit statement executes, due to internal valdation in the RSEINB00 program the program terminates. Due to this it is not able to perform the SY-SUBRC Check and thus doesn't read the log.
    Can anybody suggest me how to overcome this problem. I am attaching the code for your refernece.
    SUBMIT RSEINB00
           USING SELECTION-SET 'TEST2'
                           TO SAP-SPOOL
                           LIST NAME 'LOCL'
                           IMMEDIATELY space
                           KEEP IN SPOOL 'X'
           AND RETURN.
    <b>If sy-subrc <> 0.</b>           
                 CALL FUNCTION 'BP_JOBLOG_READ'
                  EXPORTING
                    CLIENT                      = SY-MANDT
                    JOBCOUNT                    = i_tbtco-jobcount
                    JOBLOG                      = i_tbtco-joblog
                    JOBNAME                     = i_tbtco-jobname
                   TABLES
                     JOBLOGTBL                   = l_joblog
                 IF SY-SUBRC <> 0.
                 else.
                    message i002 with l_joblog-msgv1.
                 ENDIF.
    <b>
    ENDIF.</b>
    Rgds,
    Kewal
    P.S. : any other approach to solve this problem will be appreciated too and the points will be rewarded suitably.

    If I select a job in SM37 and I click on "spool" I get a list with separate spool entries for each of the steps, e. g.
    Programmname/Kommand   Programmtyp   Spoolliste
    Z_MM_STAT_UPDATE_WERK  ABAP             1707445
    ZSLEEP                 Ext. Kommando
    Z_MM_STAT_UPDATE_WERK  ABAP             1707459
    ZSLEEP                 Ext. Kommando
    Z_MM_STAT_UPDATE_MARA  ABAP             1721423
    ZSLEEP                 Ext. Kommando
    Z_MM_STAT_UPDATE_WERK  ABAP             1721437
    Z_MM_STAT_UPDATE_MARA  ABAP             1721446
    Z_MM_STAT_UPDATE_WERK  ABAP             1721447
    Z_MM_STAT_UPDATE_VKORG ABAP             1721471
    ZSLEEP                 Ext. Kommando
    Z_MM_STAT_UPDATE_VKORG ABAP             1721521
    ZSLEEP                 Ext. Kommando
    Z_MM_STAT_UPDATE_VKORG ABAP             1721816
    It's in German but I'm sure you get the idea. For each Z_MM_STAT_UPDATE and variant I have a separate spool list that I can display.
    Markus

  • Is there any FM to generate spool request for error log of a background job

    Hi,
        I am going to create a program to create deliveries and do PGI. This program will be assigned to periodic background job.Now whatever  errors are generated in program i have to send the error log to spool request.Is there any FM for generating spool request with this error log  or how can this be done? Kindly provide sample code if possible.
    Thanks.
    Nimish Dongare.

    Hi Nimish,
    How are you doing, This is Shreekant working as ABAP developer, I sow your post in sdn forum, I have a similar requirement like I am changing the delivery taking some data from a flat file which is coming from other system and do PGI. If any error occurs during this process I need to capture it and present it as a report or create log file.. whichever is easier.
    Please can u help me how did u achieved this functionality for your requirement?.. pls. can u share some details.
    If u don mind, can u give me ur email id to communicate.
    Thanks,
    Shreekant

  • Regarding Error. Description Spool Request

    Hi all,
       How do we get error description of a spool request in a program , iam able to catch the spool no , but iam not able to get the error description of the same.
    Thanks & Regards,
    Kishore Kumar Yerra.

    Hi,
    TSP01 to TSP14 are all tables related to Spool.
    But why are you looking out for error description ?
    Best regards,
    Prashant

  • Spool Request showing status 'Error'

    Hi All
    I m facing a problem in Spool generation. When spool requests are generated it goes to status 'Error' when i see it in SP01. I have checked the device status from SPAD and also spool processor from SM51.
    What should i do now?
    Thanks n Regards
    Shashank

    Hi
    The output of log files is as follows:
          SAP spool error log
          =====================
    Print request processing log
    Errors occurred processing this print request
    OTF module: Failed to output print data
    OTF module: Failed to output print data
    OTF module: Failed to output print data
    OTF module: Failed to output print data
    OTF module: Failed to output print data
    OTF module: Failed to output print data
    OTF module: Failed to output print data
    OTF module: Failed to output print data
    The operating system is reporting problems
    File system full (file /usr/sap/<SID>/../data/000xJTYv.VRP)
    Errors occurred processing this print request
    Error during print request output. l_rc = 8
    There may be no printout
    Rgrds
    Shashank

  • How to monitor Spool errors/Spool request in CCMS

    Hi @ all,
    I have configured our Solution Manager system to monitor the spool system in the CCMS environment. However I also want to monitor spool errors/spool request in the *CCMS. I have already search in SDN for a solution but couldn´t find any. Do you have any idea how I could monitor the spool errors in CCMS (like in the transaction SP01) ?
    Kind regards
    Thomas

    Hi
    Have you checked this [http://help.sap.com/saphelp_nw04/helpdata/en/18/2625c6fed011d18e410000e83dd9fc/content.htm|http://help.sap.com/saphelp_nw04/helpdata/en/18/2625c6fed011d18e410000e83dd9fc/content.htm]
    [http://help.sap.com/saphelp_47x200/helpdata/en/34/658a3b15566262e10000000a11402f/frameset.htm|http://help.sap.com/saphelp_47x200/helpdata/en/34/658a3b15566262e10000000a11402f/frameset.htm]
    Jansi

  • Handle not valid for open spool request

    Hello everyone,
    i am facing an error while clicking the print preview option in change PO (me22n).
    i have given the dispatch time in further data of o/p as 'Send with application own transaction'.
    now, when i save and click print preview button i get an error as
    "Handle not valid for open spool request"
    Kindly give me some idea how to tackle this.
    Thanks
    gaurav

    Gaurav,
    I am having a similar issue and would appreciate if you could let us know how your problem was solved?
    What control parameters did you change to make this work?
    Thanks,
    Jay

  • Smartform internal_error when merging forms into 1 spool request

    Hi,
    I have 2 smartforms - a letter and a certificate. The user has the option to print either one of these forms or both, per employee. I'm using 1 spool request.
    As soon as I call the second smartform there is an INTERNAL_ERROR. Why does this happen and how do I solve the problem?
    Please refer to the code sample below:
    loop at i380.
    make sure the spool is not closed
      control_parameters-no_open = 'X'.
      control_parameters-no_close = 'X'.
      AT FIRST.
       control_parameters-no_open = ' '.  
      ENDAT.
      AT LAST.
        control_parameters-no_close = ' '.
      ENDAT.
    call smartform 1
        call function 'SSF_FUNCTION_MODULE_NAME'
             EXPORTING
                  formname           = 'ZLETTER'
             IMPORTING
                  FM_NAME            = FM_NAME
             EXCEPTIONS
                  NO_FORM            = 1
                  NO_FUNCTION_MODULE = 2
                  OTHERS             = 3.
        if sy-subrc <> 0.
          WRITE: / 'ERROR 1'.
        endif.
         CALL FUNCTION FM_NAME
                 EXPORTING
                      CONTROL_PARAMETERS = control_parameters
                      OUTPUT_OPTIONS     = output_options
                      USER_SETTINGS      = ' '
                      pernr              = i380-pernr
                 IMPORTING
                      JOB_OUTPUT_INFO    = otf_info
                 EXCEPTIONS
                      FORMATTING_ERROR   = 1
                      INTERNAL_ERROR     = 2
                      SEND_ERROR         = 3
                      USER_CANCELED      = 4
                      OTHERS             = 5.
            IF SY-SUBRC <> 0.
            endif.
    second smartform - certificate
        call function 'SSF_FUNCTION_MODULE_NAME'
             EXPORTING
                  formname           = 'ZCERTIFICATE'
             IMPORTING
                  FM_NAME            = FM_NAME2
             EXCEPTIONS
                  NO_FORM            = 1
                  NO_FUNCTION_MODULE = 2
                  OTHERS             = 3.
        if sy-subrc <> 0.
          WRITE: / 'ERROR 1'.
        endif.
         CALL FUNCTION FM_NAME2
                 EXPORTING
                      CONTROL_PARAMETERS = control_parameters
                      OUTPUT_OPTIONS     = output_options
                      USER_SETTINGS      = ' '
                      pernr              = i380-pernr
                 IMPORTING
                      JOB_OUTPUT_INFO    = otf_info
                 EXCEPTIONS
                      FORMATTING_ERROR   = 1
                     <b> INTERNAL_ERROR     = 2</b>                  SEND_ERROR         = 3
                      USER_CANCELED      = 4
                      OTHERS             = 5.
            IF SY-SUBRC <> 0.
            ENDIF.
    endloop.
    I cleared output_parameters, output_options and otf_info when calling form ZCERTIFICATE but this does not solve the problem. When ZCERTIFICATE is called seperately, there is no problem.  The forms should be printed directly without conversion to PDF.
    Your help will be appreciated.

    Hi,
    In the loop AT Last is in wrong place. May be that could be the reason for your problem. Then the second call to samrt from is will be working on a closed session.
    regards
    austin
    Message was edited by: Joseph Austin Prabhu Paulthas

  • Not able to print to locl printer, spool request status is in wait

    Hi All,
    When user print to locl printer, the spool request is created and we get a error message saying "connection closed after (protocol) error (RC=1)". And we found the status of spool request is in wait state and if double clicked on it, it is showing "Internal error printing".
    Below is the log of Spool work process for your reference
    Found unqueued job 21701/1 (LOCL)
    ERROR => Printer LOCL: Lookup failed ?!?!? -> Status DELAY http://rspopcc. 0813
    Just to update you user is able to print all other documents except the documents from SAP application. And user is connecting to SAP application server through Citrix.
    We are on HP-UX, Oracle database and SAP R/3 3.1i version.
    Thanks in advance.
    Regards,
    Chandrika

    sundaresh suryanarayan wrote:
    Hello Chandrika,
    >
    > Is this printer is a network printer ?.   Use Device Type : SWIN and Access Method : G Front End Printing .  
    >
    > Thanks
    >
    > Sundaresh Suryanarayan
    Hi Sundaresh,
    Thanks for your reply.
    Yes it is a network printer. User is printing to his default printer(LOCL, with host printer __DEFAULT) and we are using  device type SAPWIN and access method F(printing on front end computer).
    Regards,
    Chandrika

Maybe you are looking for