Spool list not available from SM37

Hi All,
We have scheduled a job and running successfully.
But spool list not displayed from SM37, whereas spool request generated in SP01 at the same time when the job is completed.
We've checked with the developer and they dint find anything wrong from program end.
Kindly suggest what is going wrong here.
Thanks in advance......

Hi,
Apply the following SAP notes to resolve this problem:
1372936 - Spool lists no longer displayed from SM37 after SP
1174127 - Job refers to incorrect spool request
regards,
Aidan

Similar Messages

  • Spool list not available in SM37

    HI,
           i'm facing a error "spool list not avaiable" when i execute a background job and the job status is in finished state,but when i click the spool button i'm facing this error. I tried the sap note 1372936 and 1174127 but both notes are in cannot be implemented status.I tried hard to search a solution, but couldn't find.Please help if anyone knows the solution.

    Hello,
    What release and SP level your SAP system has ?
    Thanks

  • Spool List not available

    I am not able to see the spool when i run my program in background.
    I run it by executing the program in se38 choosing the option as execute in background. I am of the idea that SAP creates a spool on its own when i run any program that has a list output without me having to code anythin explicitly for it.
    please suggest me some ways of checking why is it happening !! this is urgent !!
    Thanks.
    Shiv

    You could write a wrapper program that does a submit.
    Do F1 help to see the extensions of this statement,  you can set the print parameters there.
    SUBMIT <program> to SAP-SPOOL.
    You can also set these parameters if you were to schedule this in a job via SM36.
    You can also set these defaults in your user profile, but this would make it so for ALL reports that you run.  Maybe not such a good idea.
    Also you must verify that you are actually generating ouput.  Do you get the list running in dialog mode?
    Regards,
    Rich Heilman

  • I have edit access to someone else's calendar.  In iCloud i can add an event to this calender.  In My calendar on my Mac I can see the calendar in the list, but when I try to add an event to this calendar, it is not avail from the list in event to select

    I have edit access to someone else's calendar.  In iCloud i can add an event to this calender.  In My calendar on my Mac I can see the calendar in the list, but when I try to add an event to this calendar, it is not avail from the list in event to select.  Any help appreciated.  Thanks

    Hi Chris,
    You can't get rid of an alert. The least you can have is one that says "none".
    Nevermind, I see you learned how to edit the event.

  • Error in Email via spool list recipient feature in SM37

    Hello Experts.
    I encounter a strange problem. I am not able to send Email to external Email addresses (Lotus Notes) while I am using Distribution list option in spool list recipient option in SM37 background job. I am getting an error in SOST called 'Message cannot be transferred to node SMTP due to connection error (final)'.
    I am Able to get email with spool on my SAP inbox if I use the option 'Internal user' in spool recipient.
    Also, if I send an email in a custom program via function 'SO_NEW_DOCUMENT_ATT_SEND_API1', I am successfully able to send the email to Lotus notes id using the same distribution list. So, I suppose all the basis settings in SCOT, SU01, SICF are correct.
    I checked with my basis team as well but they also see all the email settings as correct.
    My spool is very small one and I have all the access in the system.
    Anyone having any idea for this issue, please share.
    Regards,
    Diwakar

    I found the answer myself.
    In SCOT, SMTP setting, Output format for ABAP list needs to be set as 'PDF' or 'TXT' instead of 'HTM'.
    With HTM, it was going in for error for spool email.
    Regards,
    Diwakar

  • Driver software is not available from Apple

    Was using an HP LaserJet 1020 without any problems until last week, when it just gave out and it shows the following error every time: "driver software is not available from Apple". Have tried to install the latest drivers but it won't allow it with the same error.
    Also tried following these instructions http://blog.jayway.com/2010/04/08/hp-laserjet-1020-in-snow-leopard/ but it gets stuck on the third step. The driver list can't be opened and it reads "driver software is not available from Apple" again.
    Any suggestions?

    From what I can tell from online research, HP never claimed the 1020 printer series was compatible with Macs or has ever developed any OS X drivers for them. For instance, from the "Specifications" tab of this product info page:
    Because of that, I'm kind of amazed that you ever got your 1020 to work with any version of OS X, unless some sort of hack or third party driver was involved. If so, you might want to check with the originator of that workaround to see if there are any new developments that would get it working again.

  • HT204266 I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the di

    I live in China, have Dutch nationality, and no US address or Credit Card; how can I have access to products from the US iTunes store, in particular music, when such items are not available from the China iTunes store? In general, what are the differences between countries' iTunes offerings? Does one really need an address and a credit card for any country to be able to access that countries iTunes store? Why these restrictions?

    You cannot.
    You cannot use another countrys itunes store.
    You must be physically locates inside the borders of a country to use that countrys itunes store and a credit card issued in that country with a valid billing address in that country.
    The owners of the distribution rights of movies/music/etc differ by country.  These distributors decide who can sell their content in that country.
    Buy from another source if your countrys itunes store does not carry somehting that you want.

  • Exception "algorithm ARC4 is not available from Provider Cryptix "

    hi all
    i am developing the application in which i am using two encryption/decryption algorithms one is "RC4" and second is "AES(256 bit key)".
    1.first i am taking the credit card number from database which is in
    the encrypted format using 'RC4".
    2.After taking the Credit card number from database i am decrypting them using RC4.
    3. After decrypting them i am encrypting them using "AES(256 bit key") and putting the paymentid and encrypted credit card number in HashMap.
    For that i have written following classes
    RC4EncMemory.java ( which is taking encrypted credit card number from database ,decrypting them using "RC4" and then encrypting them using "AES")
    import java.security.GeneralSecurityException;
    import java.security.Security;
    import java.sql.*;
    import java.util.*;
    import java.util.HashMap;
    import javax.crypto.SecretKey;
    import cryptix.jce.provider.key.RawSecretKey;
    import cryptix.provider.Cryptix;
    public class RC4EncMemory
         DbAccess db=null;
         RC4EncMemory crypt=null;
         PreparedStatement pstmt=null;
         ResultSet rs=null;
         EncryptionPerformance per=null;
         AESEccryption aes=null;
         private String originalCCnumber=null;
         private int paymantid;
         private byte[] b;
         private byte[] aesencrypted;
         public RC4EncMemory()
         {db=new DbAccess();}
         public void selectAllCCNumber()
              HashMap allccnumber=new HashMap(1000);
              String qry =DbAccess.getPropertyValue("cedera.ccnumber.selectccnumberFromPayment");
              System.out.println(qry);
              try
              {rs=db.getResultSet(qry);
              if(rs!=null)
              {     crypt=getInstance();
                   while(rs.next())
                        System.out.println("In while");
                        paymantid=rs.getInt("paymentid");
                        b=rs.getBytes("ccnumber");
                        System.out.println("paymantid >>> " + paymantid);
                        originalCCnumber=DecryptCCNumber(b);
                        Security.removeProvider("RC4");
                        System.out.println("decrypted original >>> " + originalCCnumber);
                        aesencrypted=getAESEncryption(originalCCnumber);
                        //allccnumber.put(new Integer(paymantid),new String(originalCCnumber));
                   Set key=allccnumber.keySet();
                   Iterator i=key.iterator();
                   while(i.hasNext())
                   {System.out.println(" Payment id from HashMap " +(Integer)i.next());
                   System.out.println("Size of the HashMap: >>" + allccnumber.size());
              else
                   System.out.println("empty");
              allccnumber.clear();
              }catch(SQLException exp)
                             System.out.println("Exception in SQL" + exp);
                        finally
                             try{          rs.close();
                                       pstmt.close();
                                       db.conn.close();
                             }catch(Exception er){}
         public String DecryptCCNumber(byte[] encryptedCCNumber)
              {     String decrypted=null;
                   if(encryptedCCNumber!=null)
                   {decrypted = decrypt(encryptedCCNumber);
                   return decrypted;
         public String decrypt(byte data[])
              if(data == null || data.length == 0)
              return null;
              try
                   xjava.security.Cipher cipher = xjava.security.Cipher.getInstance("RC4", "Cryptix");
                   cipher.initDecrypt(rsaKey);
                   byte out[] = cipher.crypt(data);
                   return new String(out);
              catch(GeneralSecurityException se)
              { System.out.println("SecurityException in decrypt method: " + se);
              return null;
         public static synchronized RC4EncMemory getInstance()
              if(_rc4decryption == null)
                   Security.addProvider(new Cryptix());
                   _rc4decryption = new RC4EncMemory();
                   makeRC4Key();
              return _rc4decryption;
    private static void makeRC4Key()
    {          String seed = "CvMjSpVrGsTnAj";
              rsaKey = new RawSecretKey("RC4", seed.getBytes());
    public byte[] getAESEncryption(String originalCCNumber)
    {     aes=AESEccryption.getInstance();
         return aes.encrypt(originalCCNumber);
    public static void main(String args[])
         RC4EncMemory mem1=new RC4EncMemory();
         mem1.selectAllCCNumber();
         private static SecretKey rsaKey = null;
         private static RC4EncMemory _rc4decryption = null;
    In the above programs i am getting the output as follows
    output:-
    in while
    paymantid >>> 3338157
    decrypted original >>> 5856373015065936
    inside encrypt method
    Original Data----->5856373015065936
    Encrypted Data----->[B@3cc0bc
    after encryption of data
    In while
    paymantid >>> 3338169
    SecurityException in decrypt method: java.security.NoSuchAlgorithmException: algorithm ARC4 is not available from provider Cryptix
    decrypted original >>> null
    In while
    paymantid >>> 3338290
    SecurityException in decrypt method: java.security.NoSuchAlgorithmException: algorithm ARC4 is not available from provider Cryptix
    decrypted original >>> null
    my program is able to decrypt the only first credit card numbers using RC4 and then encrypt it using AES(as shown in bold above) but it is not able decrypt the rest of the credit card number from the database using "RC4" and it is throwing above exception regarding the "RC4" algorithm .
    can anybody tell me what is reason behind this exception? my guess is the we cann't use the two providers simultaneously.
    please anybody help me
    AESEccryption.java(which helps to encrypt the credit card number in AES using encrypt method )
    import java.security.GeneralSecurityException;
    import java.security.Security;
    import java.sql.*;
    import javax.crypto.spec.SecretKeySpec;
    import org.bouncycastle.jce.provider.BouncyCastleProvider;
    import cryptix.provider.Cryptix;
    public class AESEccryption
         AESEccryption cryptAES=null;
         AESEccryption cryptAES1=null;
         public AESEccryption(){}
         public static synchronized AESEccryption getInstance()
              {     if(_aesEncryption == null)
                        Security.insertProviderAt(new BouncyCastleProvider(),3);
                        //Security.addProvider(new BouncyCastleProvider());
                        //Security.addProvider(new Cryptix());
                        _aesEncryption = new AESEccryption();
                        makeAESKey();
                   return _aesEncryption;
         private static void makeAESKey()
                   String seed = "FFF3454D1E9CCDE00101010101010101";
                   int length=seed.length();
                   if(length!=32)
                   {     System.out.println("Key size must be 32 characters only");
                        System.exit(0);
                   skeySpec = new SecretKeySpec(seed.getBytes(),0,32,"AES");
    public byte[] encrypt(String data)
         {     if(data == null)
              return null;
              try
              {     System.out.println("inside encrypt method");
                   javax.crypto.Cipher cipher = javax.crypto.Cipher.getInstance("AES");
                   cipher.init(javax.crypto.Cipher.ENCRYPT_MODE,skeySpec);
                   byte out[] = cipher.doFinal(data.getBytes());
                   return out;
              catch(GeneralSecurityException se)
                   System.out.println("SecurityException: " + se);
              return null;
         public static void main(String args[])throws Exception
         {     AESEccryption aesenc=new AESEccryption();
              aesenc.selectAllCCNumber();
              if(flag)
                   System.out.println("Flag " + flag);
         private static SecretKeySpec skeySpec = null;
         private static AESEccryption _aesEncryption = null;
    Regards
    Pandurang
    Message was edited by:
    andylimp12
    Message was edited by:
    andylimp12
    Message was edited by:
    andylimp12

    Hi Nith,
    Previously I have changed the document dispostal time out to 1 year but the error still occurs.
    Now I change the document inline size from 64 KB to 27 MB (estimated max document size) and see how the LCES behaves.
    I suspect if document size is larger than document inline size then LCES will write to some temp file. After that, user does not process the task for a long time, e.g. 3 days. And during the 3 days, the unix system/ websphere auto clear the temp file. After 3 days when user accesses the task again, LCES will complain "document is not in sending server side any more" ....
    I refer to : http://blogs.adobe.com/livecycle/2008/10/livecycle_tuning_knob_default.html
    For the Document sweep interval, I think, it relates Watch Folder, not this error so I don't change it.
    Regards,
    Anh

  • My Canon MX310 Series Printer failed as the software "is currently not available from the Software Update Server"? What is the matter with Apple OSX Mountain Lion?

    Mountain Lion stopped working with our Canon MX310 Printer? Why is the software not available from the Software Update Server?

    The printer and ICA scanner driver is available from Apple. There is probably some other reason why you cannot get the drivers.
    You can also get the drivers from Canon.
    But reading your post it sounds like you were printing to the MX310 and recently it has stopped printing. Is this the case?

  • Why is the documentary series Bomb Patrol Afghanistan not available from the Australian iTunes store?

    Why is the documentary series Bomb Patrol Afghanistan not available from the Australian iTunes store?

    Because it is the producer's decision where they want their items to be available. You can request for it if you want to.
    http://www.apple.com/feedback/itunes.html

  • All SYFY online on demand has error "Content not available from this domain"

    I keep getting an error on any SYFY online on demand shows which says "Content not available from this domain." This applies to any show from SYFY that I click on to test.  Other channels don't have that error.

    Hi,
    Thanks for bringing this issue. Yes, the message should be SEVERE. This will be fixed.
    You may also want to subscribe to [email protected] and bring up any issues, enhancements.
    Regards,
    Deepak

  • Valid installation itunes pkg, is not available from network resource, what ca I do?

    I have been tryng unsuccessfully to install Itunes.  I keep getting the msg. that a valid installation pkg. is not available from its network resourse.  I have windows vista.  Sometimes it says missing .dll files.  What can I do to correct this?  My Itunes worked perfectly until I was asked to upgrade it 2 weeks ago.  Now nothing works with anything else.

    See TS3704: "The feature you are trying to use is on a network resource that is unavailable" alert appears when removing Apple software in Windows.
    tt2

  • TS1702 I can not get the 12 days of Christmas to work. The app loads but it says it is not available from the Canadian store at this time

    I can not get the 12  days of Christmas to let me get the free gift. I restarted my iPad, I reloaded the app, my iTunes is a Canadian address . The error I get is " it is not available from the Canadian store at this time"

    Hi,
    See this thread:
    https://discussions.apple.com/message/20681369#20681369
    Biti

  • IOS 12.4(15)XW not available from Cisco Web site

    Can anyone please tell me why this version is not available from Cisco Web site as I am trying to download it to test on a cisco 2851 series router .The documnet below in page 7 & 10 describe  the requirement for this version. What is the replacement version for this if that is not available?

    Well, maybe I am missing something but I do not see a 12.4(15)XW release on CCO for the 2851 platform. I see references to it in documentation but I don't see actual release notes or a download link. So, where exactly did you see this particular version for this platform?
    Based on the PDF provided by the OP I think he is trying to add a fax module. In the PDF it is stated a few times that you can use 12.4(15)XW or 12.4(20)T. What this basically means is that these are minimum IOS version levels that you need to use that module. You would not want to run the minimum in most cases because software defects are abundant and seem to be endless. IOS release trains are somewhat over complicated in my opinion but here is my quick take. The XW is a early deployment release. These releases are "one offs". Usually added to incorporate a new piece of hardware. Sometime after these releases come out (again, to get the product to market) the code is incorporated in a T-train (in this case, 12.4(20)T). The idea is that the T-train code is used to introduce features/hardware/etc. that will be rolled into the next main-line release (in our world that is 15.0).
    Back to your issue. I can't find 12.4(15)XW but apparently p.bevilacqua has been able to find it. Maybe he would be willing to provide the link. If that doesn't pan out, I suggest that you look at releases after 12.4(20)T (including the latest service release for 12.4(20)T). They go up to 12.4(24)T. T-trains are touchy so you have to do your research and testing. I have had decent success with 12.4(20)T until recently (MGCP and T.38 fax, no joy). I have also used 12.4(24)T with OK success thus far. I know that p. bevilacqua doesn't like the 12.4T train "because its buggy". My opinion is all of this software is buggy. You have to identify the minimum release that will work with your hardware. Go to the latest minor/service release and research the bug toolkit. Oh, and always test.
    OK. Down the rabbit hole I go.
    HTH.
    Regards,
    Bill
    Please remember to rate helpful posts.

  • Spool visible in sp01 but not available in sm37

    Hi group,
    I am facing the following problem. There is a pgm that creates two spool requests, and they are visible when i see it in sp01, but when we see it in sm37 only the last spool request is available. Pls help.
    Regards,
    Divya.

    The job status is complete and both the requests are available in sp01. but when we display the spools in sm37 just the last spool is available.
    This is the sample code
    REPORT  zspoolreq1                               .
    DATA: w_param       LIKE pri_params,
          w_valid,
          w_text        LIKE pri_params-prtxt.
    PERFORM open_spool.
    PERFORM open_second_spool.
    FORM open_spool .
      NEW-PAGE PRINT ON PARAMETERS w_param NO DIALOG.
      WRITE: / 'First Spool Request'.
      NEW-PAGE PRINT OFF.
    ENDFORM.                    "open_spool
    FORM open_second_spool.
      NEW-PAGE PRINT ON PARAMETERS w_param NO DIALOG.
      WRITE: / 'Second Spool Request'.
      NEW-PAGE PRINT OFF.
    ENDFORM.
    null
    Message was edited by:
            divya rajendiran

Maybe you are looking for

  • Exicse for free of Cost Material

    Hello, I have a question regarding Excise on Free of cost Material. When we are sending material to Customer as a sample or free of cost then we do not pass any accounting entry for the same during VF01. In the above scenario how do we capture the ex

  • Pictures not showing on PDF file

    I have converted a word file into a PDF file, my original file included some logos and pictures, the pictures came out okay, but the logos are not showing. All you can see is the frame with a small square with an X on one of the corners. Can you assi

  • Rename custom nodes in a JTree

    Hi all, Our problem is that we don't find a way to rename our custom objects that we show in our JTree. We have defined a complete Tree data structure which works fine already ... now we want to be able to rename the nodes in the Tree. Our JTree disp

  • Idoc not getting post

    Hi Friends, i am using transaction WPUK , there if i enter eann number starting from 1, for ex. 1WMDP000023 Then idoc posted but if i enter eann number starting from 0, for ex. 0OA103403929908 , idoc not gettign post , error is eann number not exist

  • Services in RAC environment

    Hi all, i hope is the correct subforum... i'm having some trouble in demo machine given us by an hardware vendor. environment is a 2 nodes RAC 11.1.0.7 on windows server 2008 (sic!) installation successful of clusterware and database. Application cre