SP01 - display spool request, buffer too short

Dear all,
when trying to display spool request in transaction SP01, we are getting the error: internal error 0000000040/ 32 in spooler (buffer too short)
But the same request could be displayed via transaction SPO10.
R/3 4.6C.
Any idea ?
Thank you for the answer.
Pavol Simko
Edited by: Pavol Simko on Nov 3, 2009 3:18 AM

In SM37:
Goto>Display Requests>Settings...
Then in "Display area"-->"From page"
Set it to from page 1 - "no of pages" then try to display
the spool again.

Similar Messages

  • Calling Transaction SP01 (Display spool requests) with parameters via URL

    Hi,
    I would like to be able to list all spool requests of a certain title via a URL.
    Unfortunately ITS does not seem to work. A URL constructed like this
    http://host:port/sap/bc/gui/sap/its/webgui/!?sap-system-login-basic_auth=X&sap-client=500&sap-language=EN&transaction=SP01&S_RQTITL-LOW=Testing123&okcode=CRET
    causes a short dump that SP01 (Program RSOSP01NR) is a Module Pool.
    I am therefore considering the following options:
    1. BSP Program
    2. Java WebDynpro
    3. ABAP WebDynpro
    Ideally, I want to be able to enter in my browser something like
    http://host:port/<BSP_or_WebDynPro_stuff>&~title=Testing123
    and for this to show in the browser a list of all spool requests that are named "Testing123".
    Can someone advise whether any of the above options are preferable?
    Also, whether such a program should call transaction SP01 with parameters (skipping first screen) or look to using the associated function modules.
    Many thanks for any assistance.
    Regards
    Adrian

    Solved myself. Thanks

  • Requested buffer too large - but data is already in memory

    Hello all,
    I am writing a program that generates sound and then uses the Java Sound API to play it back over the speakers. Until recently, using clips have not led to any problems. On two computers I can play the sound without a hitch. However, on the newest computer (and also with the largest specs and especially more RAM), I am getting an error while trying to play back the sound. The exception that is thrown is:
    javax.sound.sampled.LineUnavailableException: Failed to allocate clip data: Requested buffer too large.
    I find this odd because the buffer already exists in memory: I don't have to read in a .wav file or anything because I am creating the audio during the course of my program's execution (this is also why I use Clips instead of streaming - the values are saved as doubles during the calculations and then converted into a byte array, which is the buffer that is used in the clip.open() method call). It has no problems allocating the double array, the byte array, or populating the byte array. It is only thrown during clip.open() call. I also find it strange that it would work on two other computers, both of which have less RAM (it runs fine on a machine with 512MB and 2GB of RAM, both XP 32-bit). The only difference is that the computer with the issue is running Windows 7 (the RTM build), 64-bit with 6GB of RAM. I am running it through Netbeans 6.7.1 with memory options set to use up to 512MB - but it's never gone up that far before. And I've checked the size of the buffer on all three computers and they are all the same.
    Does anyone know what the issue could be or how to resolve it? I am using JDK6 if that matters. Thank you for your time.
    Edited by: Sengin on Sep 18, 2009 9:40 PM

    Thanks for your answer. I'll try that.
    I figured it had something to do with Windows 7 since it technically hasn't been released yet (however I have the RTM version thanks to a group at my univeristy in cahoots with Microsoft which allows some students to get various Microsoft products for $12).
    Edit: I just changed the Clip to a SourceDataLine (and the few other necessary changes like changing the way the DataLine.Info object was created) and wrote the whole buffer into it, drained the line and then closed it. It works fine. I'll mark the question as answered, however that may not be the "correct" answer (perhaps it does have something to do with Windows 7 and not being completely tested yet). Thanks.
    Edited by: Sengin on Sep 21, 2009 8:44 PM
    Edited by: Sengin on Sep 21, 2009 8:46 PM

  • Playing a large Clip and "Requested buffer too large" exception

    Hi All.
    Through JavaSound, I am trying to reproduce a WAV audio file that I create within my application. Also the recording/acquisition of the audio file is performed through JavaSound.
    The WAV audio file that I am trying to play has the following features:
    - 44 Khz, 8-bit, mono
    - Length = 1min 36sec
    - File size = 4.04 MB
    Here is a fragment of my code:
    // Get the input stream from the input audio file
    audioInStream = AudioSystem.getAudioInputStream(inputFile);
    AudioFormat audioFormat = audioInStream.getFormat();
    // Compute the buffer size (for a 0.25 seconds buffer)
    float bufferTime = 0.25F; // 0.25 seconds of buffer
    int frameSize = audioFormat.getFrameSize();
    float frameRate = audioFormat.getFrameRate(); // frames per second
    int numOfBufferedFrames = (int)(frameRate * bufferTime);
    int bufferSize = frameSize * numOfBufferedFrames;
    // Create the output data line
    DataLine.Info sourceDataLineInfo = new DataLine.Info(Clip.class, audioFormat, bufferSize);
    sourceClip = (Clip)AudioSystem.getLine(sourceDataLineInfo);
    sourceClip.addLineListener(this);
    // Prepare the output line for playing
    sourceClip.open(audioInStream);
    // Start playing
    sourceClip.start();This code works perfectly fine on Windows (I am testing on a Windows XP Pro 32-bit machine).
    On the other side, this code throws the following exception on Mac OS X:
    javax.sound.sampled.LineUnavailableException: Failed to allocate clip data: Requested buffer too large.
         at com.sun.media.sound.MixerClip.implOpen(MixerClip.java:561)
         at com.sun.media.sound.MixerClip.open(MixerClip.java:165)
         at com.sun.media.sound.MixerClip.open(MixerClip.java:256)
         at mypackage.AudioPlaybackThread.run(AudioPlaybackThread.java:70)
         at java.lang.Thread.run(Thread.java:637)The exception is thrown upon the sourceClip.open(audioInStream); call.
    Googling around, I discovered that the MixerClip implementation seems to have some inherent buffer size limitation of 1 MB... Isn't it ridiculous?
    But why this is working perfectly fine on Windows - even with clips of 4 megabytes -, while not working with larger clips on Mac OS X?
    Also, will the following code line influence the size of the buffer used by MixerClip?
    DataLine.Info sourceDataLineInfo = new DataLine.Info(Clip.class, audioFormat, bufferSize);I know that I could use a SourceDataLine class, and write() data into it in order to reproduce my long audio clip, but I need support for pausing, seeking audio to a specific position, seeking forward, etc., and using a Clip would be absolutely perfect for this purpose!
    Any help or suggestion would be greatly appreciated.
    Thanks,
    Marco

    Googling around, I discovered that the MixerClip implementation seems to have some inherent buffer size limitation of 1 MB... Isn't it ridiculous?
    But why this is working perfectly fine on Windows - even with clips of 4 megabytes -, while not working with larger clips on Mac OS X?Because Apple changes stuff in the JRE and Microsoft doesn't... and I personally believe Mac specifically strips down the JavaSound stuff because of iTunes (anti-competition and such).
    Also, will the following code line influence the size of the buffer used by MixerClip?Probably not, no.
    I know that I could use a SourceDataLine class, and write() data into it in order to reproduce my long audio clip, but I need support for pausing, seeking audio to a specific position, seeking forward, etc., and using a Clip would be absolutely perfect for this purpose!You can program that functionality yourself, and if you want to open large files in Mac, it sounds like you'll have to.

  • SAPDBA: Error - global buffer too short

    Hi,
    When I run SAPDBA and do a 'Check of freespace of objects in all tablespaces', I encounter the error:
    bdf: could not find the mount point for /oracle/<SID>/sapdata<n>/btabd_<xx>
    SAPDBA: Error - global buffer too short
    This error sometimes appear and at times it doesn't.  What does this error mean and how can i resolve it? 
    Many thanks,
    Kris

    Hi Kristoffer,
    Kindly gothrough the following link. It will lead you to solve your problem,
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/sapdba-error-1244276#
    Regards,
    Harish

  • Display SPool requests

    Hi All,
    Here i have one issue with Spool requests. One of our user wants to display all teh spool requests belonging to his site. Please let me know how can we provide access to group of users.
    Thnaks in Advance.

    One option has already been discussed u Julius i.e changing the attribute of the field SPOAUTH to Organization Level field.
    But I hope it would be better to create a Custom TCode (say ZP01) for this purpose.
    Also create a Custom Auth. Object (say.. ZSPO_AUTH) with Fields SPOAUTH, SPOACTION, SPODEVICE (optional - this will help you to select Site Specific device if any and also if the users are bound to use them as Local printer... you will know what is the access type).
    While creating this, make SPOAUTH Organization Level.
    Ask Developers to use this object in AUTHORITY-CHECK statement for enforcing a check against this.
    Add this Object to ZP01 in SU24 as C/M.
    Create a role (preferable and easy for maintenance to use ref-derive design if your SOP permits) and make copy for all site and assign to the Site Owners.
    Remove SP01 from their user master.
    Regards,
    Dipanjan

  • Displaying spool requests

    Dear experts ,
          My requirement is ,displaying the spool requests according to user name ,date created ,and Title.for that i am using the following two function modules.
    RSPO_RINIT_SPOOL_SP01
    RSPO_RDISPLAY_SPOOLREQ
    i appended the title of spool request to the internal table and passed that interanal table to RSPO_RINIT_SPOOL_SP01 ,up to now its working fine .but what my requirement is ,i should pass the username and date through selection screen.in the same way i have appended data from the selection screen to respective internal tables and passed through the internal table.if i give wrong 'username ' in selection screen it should not display any spool job.even though its showing spool requests based on title.what was wrong?please help me out.
    Thanks and regards
    naresh bammidi

    Hi Naresh,
    Use below report for your porpose.
    TABLES : RQIDEN_T,RQOWNE_T,RQCRED_T,RQTITL_T.
    SELECT-OPTIONS : s_spool for RQIDEN_T.
    SELECT-OPTIONS : s_owner for RQOWNE_T.
    SELECT-OPTIONS :s_date  for RQCRED_T.
    SELECT-OPTIONS  : s_rqtitl  for RQTITL_T.
    type-POOLs : slis.
    data : lt_SPORQ   TYPE TABLE OF tsp01sys,
           ws_SPORQ   TYPE tsp01sys,
           goto_sel.
    data : lw_sel TYPE SLIS_SELFIELD.
    data: lt_sysid type TABLE OF ALSYSID,
          ws_sysid type ALSYSID.
        ws_sysid-SYSID = SY-SYSID.
        append ws_sysid to lt_sysid.
    CALL FUNCTION 'RSPO_RINIT_SPOOL_SP01'
        EXPORTING
          SAVEFLAG = 'A'
          SUMMARY   = 'X'
          LOCAL     = 'X'
          OWNER     = ' '
          CLIENT    = ' '
          RQNONE    = 'X'
          RQPROC    = 'X'
          RQSUCC    = 'X'
          RQERR     = 'X'
          PJPROC    = 'X'
          PJSUCC    = 'X'
          PJPROB    = 'X'
          PJERR     = 'X'
        TABLES
          SYSLIST   = lt_sysid
          S_RQIDEN  = s_spool
          S_RQOWNE = s_owner
          s_rqcred = s_date
           s_rqtitl    = s_rqtitl.
    call function 'RSPO_RDISPLAY_SPOOLREQ'
           exporting
                use           = ' '
           importing
                goto_sel      = goto_sel
         TABLES
              SPORQ         = lt_SPORQ
              OUTRQ         =
           changing
                rs_selfield   = lw_sel
           exceptions
                others        = 1.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    Thanks,
    Vijay

  • Sending spool request through email

    Hi
    I am  executing ransaction SP01. then i am displaying spool requests of a particular user. next screen shows spool reuqests of that user. now when i click on a spool request , on next screen in meny send mail option is not appearing. How can i send contents of my output via emai.
    Thanks in advance

    Alfonsus
    Thanks for your reply. I tried that. I am getting a document in mail box with following error
    Error log                                                                               
    E0332                    EDI: Partner profile not available                                                                        
    F0251                    In form F110_US_AVIS / window MAIN , the element 610-H (Text-H) is missing                                
    F0253                    Output of the relevant forms is defective                                                                 
    Can you help on this.
    Thanks

  • 0000000040/    32 in spooler (buffer too

    Hello ,
    4.6c system.
    We are running Z-program in the  background having LINE-SIZE 255 in the program.
    The completed jobs have spool requests generated, but they cannot be viewed for any user.
    0000000040/    32 in spooler (buffer too) is the error message.
    The spool consistency check report is running correctly in SAP.
    Default printer is used as the op device.
    Can you please suggest.

    In SM37:
    Goto>Display Requests>Settings...
    Then in "Display area"-->"From page"
    Set it to from page 1 - "no of pages" then try to display
    the spool again.

  • Track/Audi the graphical display of a spool request

    Hello all,
    I have the following question: Is it possible to track/audit which user ID is accessing/opening the "type" of a spool request?
    I thought it would be a rspo parameter but I haven't found anything related. If it is not possible then the only thing that can be tracked is who is running tcod SP01?
    Thanks in advance.
    Loukas

    I have to give it to you that a user with the correct authorizations and no additional access (highly unlikely) will experience almost identical system behaviour in the transactions SP01 and SP02.
    - 3 differences are that the screens and PAI (Process After Input) modules are different, so there are more menu options in SP01 even although the program is the exact same one.
    - You can display an overview of spool locks, so if you could provoke an entry in the overview to appear then other S_SPO_ACT actions could be used on them (e.g. redirect to a local printer).
    - The SU24 proposals will tempt many folks into granting much more than just SPAR admi action. This also plays a role in the choice of transaction, and I often create "dummy" transactions for the identical programs or ones which do nothing to achieve the same.
    We can write a PhD about this.... but perhaps if you explain why you want SP01 with enhanced options in the stead of SP02 then it will be clearer, despite all urban legends being in your disfavour..
    Cheers,
    Julius
    ps: Yes, thank you. I had a very adventurous vacation

  • Why is it important to monitor SP01 or the Spool Requests?

    Hello Guys,
    Part of my tasks is to monitor the SAP systems we are handling but I would like to get the concept of the need to monitor SP01 such as if there are errors what is the impact in the system? In the spool work process etc?
    Can you help me through?
    Thanks,
    Jennah

    Hello,
    Normally you won't need to monitor SP01, cause many times the amount of spool requests generated is too large and lets say you do wish to monitor only those spools which had an error still its better to check this in SM21 as it would have more details about what went wrong.
    To keep your TEMSE database (spool database) healthy, I would rather monitor and run transactions and execute menu options of the following.
    SP12 -> Temse Data Storage -> Consistency checks
    SPAD -> Administration -> Check Consistency
    As deepak noted, you can schedule standard cleanup jobs SAP_REORG_SPOOL to perform regular cleanup.
    Start transaction SM36 and click on the standard jobs button, this would take you to a screen where you can schedule standard jobs.
    Select the job related to SPOOL and schedule it with the required parameters.
    Here is the list of Standard Basis jobs that you should have in your systems.
    http://help.sap.com/saphelp_47x200/helpdata/en/c4/3a7ede505211d189550000e829fbbd/frameset.htm
    Regards,
    Siddhesh
    Edited by: Siddhesh Ghag on Jun 20, 2008 12:06 PM

  • SM37 - Graphical display of spool request in Hebrew

    Hello,
    I'm running a report in background. When I look at the spool request display
    the header display in hebrew from left to right instead right to left.
    when I'm running online I don't have a problem. I enter the session in hebrew.
    does anyone have any idea ?
    thanks,
    Michal

    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

  • Is LED display video cord too short to use with Mac Pro?

    I've seen the new 24-in cinema display used with a macbook and noted how short the cord is. Now I'm thinking of getting the new Mac Pro with that same display but won't the cord be too short for me to set the tower near the floor on the side of my desk? I don't want to have to set that tower ON my desktop just so the connector will reach the minidisplay port.
    Any thoughts?

    I have exactly this set up, and it (just) works for me.
    The cable is about 42" from the back of the monitor to the three connectors at the other end, which allows me to have the Mac Pro on the floor, and the monitor on my desk. Obviously, it will depend on your desk height, cable access, etc., but it was a bit of tight fit, so you might want to get out a tape measure and see it will work for you.

  • Spool Request Display Report

    Hello,
    Pleasure to be part of this community and ask the first question.
    I have created a report and probably, that report is going to be scheduled to run weekly.
    I want to understand how I can create a job and spool request display report for this program. I have found some information from this forum about SM36/SM37 T-Code and spool request display. However, I think I am not able to get the whole scenario of how it is going to work.
    If someone can give me an idea, that would be great. Practical examples will be appreciated.
    Regards,
    Udit

    I am assuming you will be scheduling this job manually and not programmatically.. The process is as follows..
    Goto SM36
    Enter a Job Name
    click on START Condition butto and click Date and Time button
    you will see a button PERIODIC VALUES appeared below.
    Click and select WEEKLY as you have indicated, SAVE it.
    Enter date and time so that it starts on that time and is scheduled everywk at that time
    You can enter NO START AFTER in case you want to restrict this.
    Then Click STEP
    You can enter program name variant and also select Printer specification
    And that should do the trick..
    Hope this helps

  • Users Authorized to Display Other Users Spool Request

    Hi experts,
    I got the yellow alert in EWA report from solman like "Users Authorized to Display Other Users Spool Request"
    I just want to know how to restrict the users seeing their spool request alone.
    I also checked the object S_SPO_ACT but am not able to get the things done.
    Pls suggest some ideas.
    Regards,
    Raja. G

    Take a look in the FAQ thread at the top of the forum. There is a note about this toward the bottom.
    The note is rather long and complicated. Also search here for discussions about transaction SP02.
    Cheers,
    Julius

Maybe you are looking for

  • Sharing ethernet from Macbook pro to wifi for my iphone.

    Internet sharing has worked completely fine for me for about 3 weeks up until now.  Now, when I try to connect to the network on my iPhone, it connects for about a second, then drops connection. (This connecting and disconnecting happens rapidly if I

  • Viewing videos in iPhoto

    Just downloaded Snow L. and now I can't simply double click on videos to run in the new Quicktime. Any suggestions. I have iLife '08. Was I supposed to know that it doesn't work with Snow? Got tons of video that I can't see. Sure I can go the long wa

  • How do i delete individual phone numbers

    new 32g 4.2.6 (8E200) OS. cant figure this out.

  • Error in BAPI_PO_CREATE1 imputing WBS Element

    hi,    I'm trying to create a service purchase order (ME21N) tied to a purchase requisition using BAPI_PO_CREATE1. The purchase requisition is imputed to Project (WBS Element). I have not been able to create, the BAPI generates an error KI235 "Accoun

  • Windows - what version.

    Which version of windows would you advise to install please - if vista do I need 32 or 64 bit? Do I need to install anti virus software and which one please.