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

Similar Messages

  • 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

  • How to get a graphical display of spool request after a batch job?

    Hi all,
    I have scheduled a bunch of batch jobs. When I run sm37 to look at the finished jobs, I can see that there is a "papirus like ikon" in the second column, Ln, (the one on the right from the job names) for some of the jobs, but not for the most of them. 
    Now when I, in sm37, mark this job for which I have an "papirus like ikon", press a "Spool" icon on top of the screen, then mark one step and press the "google icon" I get an output of what job performed in that step. That output usually gives a quite good information of what the program did (e.g. Nr of lines deleted, OP released).
    Now my question is how do I get that spol output for the rest of the jobs as well?
    Thanks and Kind Regards,
    Armin

    Hi Thomas,
    As you said, the OTF is stored as is in the spool file, and you can read it using the C calls, or use RSPO_RETURN_SPOOLJOB function module for example.
    Note that using SP01, you can send a spool via a menu entry, which corresponds to function module RSPO_SPOOLJOB_TO_OFFICE.
    Best regards
    Sandra

  • FM for conversion of graphical display of spool to html

    Hi abapers,
              Please help.  This is the scenario, what I need is to convert the graphical display of spool to html.  The html output has to be the same with the graphical display of the spool with all the colors, fonts etc without using the shortcut in the system menu.  Please, please, help.  I need to know how.  It's really, really urgent.  Points will be given to the person who can help me.  Thanks.

    Hi,
    First convert the spool to internal table by using FM
    RSPO_RETURN_ABAP_SPOOLJOB
    Next from internal table to HTML....
    Link: /people/rammanohar.tiwari/blog/2006/01/29/abap-utility-print-screen-to-html
    or try the following
    Please try the follwoing:
    1. define HTML internal table with ref to type W3HTML
    2. download it as BIN type and give total lenght of the strings as a parameter in the down load.
    See the code extract below:
    describe table html lines entries.
    read table html into w_html index entries.
    size = ( entries - 1 ) * 255 + strlen( w_html ).
    concatenate p_path file into file.
    call function 'WS_DOWNLOAD'
    exporting
    bin_filesize = size
    filename = file
    filetype = 'BIN'
    tables
    data_tab = html
    Regards,
    Raj.

  • 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

  • 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

  • Spool request with more than 255 columns

    Hi,
    Please let me know what formatting type has to be used to have spool output with more than 255 lines.
    X_24_80_JP        L      ANY           00024   00080   ABAP list HR Japan: At least 24 rows by 80 columns
    X_44_120          L      ANY           00044   00120   ABAP/4 list: At least 44 rows by 120 columns
    X_51_140_JP       L      ANY           00051   00140   ABAP list HR Japan: At least 51 rows by 140 columns
    X_58_170          L      ANY           00058   00170   ABAP/4 list: At least 58 rows by 170 columns
    X_60_80_JP        L      ANY           00060   00080   ABAP list HR Japan: At least 60 rows by 80 columns
    X_65_1024/4       L      ANY           00065   01024   ABAP List: At Least 65 Lines 4*256=1024 Columns Four-Sided (Only for SAPlpd)
    X_65_132          L      ANY           00065   00132   ABAP list: At least 65 rows by 132 columns
    X_65_132-2        L      ANY           00065   00132   ABAP List: 2-column 65 characters 132 columns (only for SAPLPD from 4.15)
    X_65_200          L      ANY           00065   00200   ABAP list: at least 65 lines with 200 columns (not for all device types)
    X_65_255          L      ANY           00065   00255   ABAP/4 list: At least 65 rows with a maximum number of columns
    X_65_256/2        L      ANY           00065   00256   ABAP list: At least 65 lines 2*128=256 double columns (SAPLPD only)
    X_65_512/2        L      ANY           00065   00512   ABAP List:  At least 65 Lines 2*256=512 Columns 2-sided (Only for SAPlpd)
    X_65_80           L      ANY           00065   00080   ABAP/4 list: At least 65 rows by 80 columns
    X_65_80-2         L      ANY           00065   00080   ABAP List: 2-column 65 characters 80 columns (only for SAPLPD from 4.15)
    X_65_80-4         L      ANY           00065   00080   ABAP List: 4-column 65 characters 80 columns (only for SAPLPD from 4.15)
    X_90_120          L      ANY           00090   00120   ABAP list: At least 90 rows by 120 columns
    X_PAPER           L      ANY           00010   00010   ABAP/4 list: Default list formatting
    X_PAPER_NT        L      ANY           00001   00001   ABAP/4 list: Obsolete (do not use)
    X_POSTSCRIPT      L      ANY           00001   00001   Pre-prepared PostScript
    X_SPOOLERR        L      ANY           00001   00001   ABAP list: Spooler problem report
    X_TELEX           L      TELEX         00001   00001   Telex: 69 characters wide, only as many lines as supported by TTU
    ZABC_SAP        L      ANY           00065   00550   LCM Report Page Type
    I have created a custom Format Type with 65*550 (ZABC_SAP) , but still the output gets truncated in the spool.
    In sp01 . For the spool request ... If it displayed in Graphical layoout ... Output is getting truncated but when we see in Raw format .. i can see the entire output. But it is not at all formatted.
    Thanks,
    Tanuj
    Message was edited by:
            Tanuj Kumar Bolisetty

    Hello Tanuj,
    You need to use a page format greater than 255 columns for sure. However still if it does not solve the issue then you may consider using the note 186603.
    PS: I guess you are on a higher release than 4.6 C . For this release this note íIt has a text attachment for a report tat allows to display such spool requests.
    Regards.
    Ruchit.

  • How to know spool requests from other program?

    Hi,
    I have requirement like: one standard program will be scheduled in the background, so corresponding spool requests will generated.
    I need to write a program, which will capture the spool requests of the standard program.
    is there any function module/table available for this requirement? we need to give  spool title, date and time as input parameters to that function module.
    please help me

    Hi,
    try these Function Modules....
    RSPO_IDELETE_SPOOLREQ
    RSPO_IGET_TOC_SPOOLREQ
    RSPO_IMAP_PAGES_SPOOLREQ
    RSPO_ISELECT_SPOOLREQS
    RSPO_RCHANGE_SPOOLREQ_ATTR
    RSPO_RDISPLAY_SPOOLREQ
    RSPO_RDISPLAY_SPOOLREQ_LIST
    RSPO_RID_SPOOLREQ_ATTR
    RSPO_RID_SPOOLREQ_DISP
    RSPO_RID_SPOOLREQ_LIST         List Display for Spool Requests with ID
    RSPO_RISELECT_SPOOLREQS
    RSPO_RLIST_DELETE_SPOOLREQ
    RSPO_RPRINT_SPOOLREQ
    RSPO_RSPOOLREQ_LIST_TO_VIEW
    RSPO_RSPOOLREQ_TO_VIEW
    RSPO_RSTATUS_FOR_SPOOLREQ
    Arunima

  • Output spool request

    Dear All
    How to delete Output spool request.  Kindly send the detail procedure
    Moderator message:
    Locked. Reason: basic question.
    Please read forum rules.
    Edited by: Csaba Szommer on Dec 16, 2011 1:41 PM
    Edited by: Csaba Szommer on Dec 16, 2011 1:47 PM

    Hi,
    it is the way to use transaction SP01 in display the spool request is to change there the date in the field "Deleted on".
    It works perfectly.
    The problem begins when your standard users discover this technique and you find a big number of huge report spools with a deletion date in year 9999. Then you get a huge TST03 table....
    the only way to avoid having the spool deleted is to modify the TSP01-RQCRETIME and TSP01-RQDELTIME, the corresponding spool request number such that the year portion is some high value:
    RQCRETIME : 2099101022114500
    RQDELTIME: 2099101822114500
    Unfortunately this method requires direct modification of table tsp01 and not sure if you'll be able to do that in your environment.
    Regards
    Raj.
    Moderator message:
    Warning. You used someone else's message as it was your own. Please note that such behaviour can result in deletion of your user.
    source:
    Several SP01 spool request that need to preserve
    Edited by: Csaba Szommer on Dec 16, 2011 1:44 PM

  • 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

  • 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.

  • Spool Requests are not generated in SM37

    Hi Freinds,
    in sp01.. there are 2 spool requests were generated for one standard prg.
    example : the spools requests are 1 and 2.(assume)..
    im sm37 .. it is showing 2 spool request only .. not 1 st spool request.. what is reason behind this??
    BUT I WANT 2 SPOOL REQUEST WHRE THE SAME 2 SPOOL REQUESTS ARE GENERATED IN SP01.
    IT IS POSSIBLE.. ANY SETTING ARE THERE IN SM37?
    regards,

    check the job steps... did u schedule the job or set it to start immediately
    in sm37 on the top, select ur job name and hit on step to see whats wrong in it..

  • 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

  • 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

  • Display all sales order's smartform output in one spool request

    Hi,
    If suppose user has given sales order number from 01 to 14 then the output of all sales order should come in one print priview of spool request. How to do it?
    Please help.
    Thanks in advance,
    Rgds,
    Madhuri

    Hi Madhuri,
    Call open form write form and close form in loop so that till sales order remains in the loop the form will continue to print. In this way all sales order in internal table will print in the same spool.
    Hope this will help you.
    Regards,
    Vijay

Maybe you are looking for