Wrong sequence of printout's.

Hi!
When I print on an SAP printer, the output requests are issued in the wrong sequence, even though the SAP output device in SPAD is defined with the "sequential processing" attribute. This situation appear when I have got more than 400 spool requests. When I put more requests some printout are missing and the sequence is wrong.
I checked the SAP notes especially Note 412065 - Incorrect output sequence of output requests.
I check the parameter rspo/global_shm/job_list and It is 1000. That mean I can put on spool queue 1000 requests before it will be full. I put less becouse 400. What is wrong and how can I fix it.
THX for answer.

hi,
the bug u r telling is a functional issue and some thing related to printer configurations. this has nothing to do with our coding .
correct me if i am wrong.

Similar Messages

  • Wrong sequence of Packages in the tp buffer

    Hi,
    We are upgrading our solution manager 7.0 system to EHP1. We have
    already upgraded kernel to 701 and java patches to EHP1. Then all addon
    patches have been copied into the EPS/in . Then add-on upgrade
    operation have been started from SAINT transaction. But we have an
    error in DDIC_IMPORT phase like below:
    Import phase 'DDIC_IMPORT' (04.01.2011, 20:46:30)
    Wrong sequence of Packages in the tp buffer (e.g. SAPK-50001INCRMUIF)
    Abort the import due to an error situation (04.01.2011, 20:46:33)
    How can we solve and continue to Solution manager upgrade operation?
    Best regards,

    Hi,
    I solved problem. But now I have another problem in phase DDIC_ACTIVATION. Error information is like below:
    Error during executing the tp command 'tp ACT ALL TRS ...'
    tp return code: '0012' , tp message: 'A tool used by tp aborted' , tp output:
      initial value of NLS_LANG: 'AMERICAN_AMERICA.UTF8'
      This is tp version 372.04.88 (release 701, unicode enabled)
      Warning: Parameter DBLIBPATH is no longer used.
      standard output from tp and from tools called by tp:
    Details of the error situation can also be found in the import logs
    Abort the import due to an error situation (05.01.2011, 22:55:34)
    How can I solve it?
    Best regards,

  • ALE Change pointer idocs generated in wrong sequence

    We are using the serialization group to generate the MATMAS and CLFMAS idocs with the sequence MATMAS generated first and then CLFMAS.
    Normally,this seems to work fine with the idocs generated in the right sequence.
    However, during a period of every 24hours, I could see a couple of MATMAS and CLFMAS idocs being generated in the WRONG sequence with CLFMAS generated first and not MATMAS as maintained in the serialization group.
    What could be the reason?
    I checked in the BDCP and BDCPV tables, the timestamps for the wrong sequence idocs seem to be correct with MATMAS before CLFMAS. However the actual idoc creation time is not in correct sequence.

    Hi,
    Can you check your serialization group via tcode BD44 and check the sequence number for MATMAS and CLFMAS?
    Hope this will help.
    Regards,
    Ferry Lianto

  • Function modules invoked in wrong sequence  bapi_po_create

    trying to use bapi_po_create in se37
    enter purch org     vendor   doc type    purch group 
    when test get the following
    function modules invoked in wrong sequence
    what does that mean?
    how an i create

    Not sure, but  I do think you need more information than that.  Here is an example program calling the BAPI.
    report zrich_0001.
    constants : c_x value 'X'.
    data: del_date type sy-datum.
    data: pohead  type bapimepoheader.
    data: poheadx type bapimepoheaderx.
    data: exp_head type bapimepoheader.
    data: return  type table of bapiret2 with header line.
    data: poitem  type table of bapimepoitem with header line.
    data: poitemx type table of bapimepoitemx with header line.
    data: posched  type table of bapimeposchedule with header line.
    data: poschedx type table of bapimeposchedulx with header line.
    data: ex_po_number type bapimepoheader-po_number.
    parameters: p_matnr type ekpo-matnr.
    parameters: p_werks type ekpo-werks.
    parameters: p_lgort type ekpo-lgort.
    parameters: p_menge type ekpo-menge.
    parameters: p_lifnr type ekko-lifnr.
    parameters: p_ekorg type ekko-ekorg.
    parameters: p_ekgrp type ekko-ekgrp.
    parameters: p_bukrs type ekko-bukrs.
    * Header Level Data
    pohead-comp_code = p_bukrs.
    pohead-doc_type   = 'NB'     .
    pohead-creat_date = sy-datum   .
    pohead-vendor = p_lifnr.
    pohead-purch_org = p_ekorg.
    pohead-pur_group = p_ekgrp.
    pohead-langu      = sy-langu   .
    pohead-doc_date   = sy-datum.
    poheadx-comp_code  = c_x.
    poheadx-doc_type   = c_x.
    poheadx-creat_date = c_x.
    poheadx-vendor     = c_x.
    poheadx-langu      = c_x.
    poheadx-purch_org  = c_x.
    poheadx-pur_group  = c_x.
    poheadx-doc_date   = c_x.
    * Item Level Data
    poitem-po_item  = 1.
    poitem-material = p_matnr.
    poitem-plant    = p_werks.
    poitem-stge_loc = p_lgort.
    poitem-quantity = p_menge.
    append poitem.
    poitemx-po_item    = 1.
    poitemx-po_itemx   = c_x.
    poitemx-material   = c_x.
    poitemx-plant      = c_x .
    poitemx-stge_loc   = c_x .
    poitemx-quantity   = c_x .
    poitemx-tax_code   = c_x .
    poitemx-item_cat   = c_x .
    poitemx-acctasscat = c_x .
    append poitemx.
    * Schedule Line Level Data
    posched-po_item        = 1.
    posched-sched_line     = 1.
    posched-del_datcat_ext = 'D'.
    del_date = sy-datum + 1.
    write del_date to posched-delivery_date.
    posched-deliv_time     = '000001'.
    posched-quantity       = p_menge.
    append posched.
    poschedx-po_item        = 1.
    poschedx-sched_line     = 1.
    poschedx-po_itemx       = c_x.
    poschedx-sched_linex    = c_x.
    poschedx-del_datcat_ext = c_x.
    poschedx-delivery_date  = c_x.
    poschedx-quantity       = c_x.
    append poschedx.
    call function 'BAPI_PO_CREATE1'
         exporting
              poheader         = pohead
              poheaderx        = poheadx
              testrun          = ' '
         importing
              exppurchaseorder = ex_po_number
              expheader        = exp_head
         tables
              return           = return
              poitem           = poitem
              poitemx          = poitemx
              poschedule       = posched
              poschedulex      = poschedx.
    call function 'BAPI_TRANSACTION_COMMIT'
         exporting
              wait = 'X'.
    if not ex_po_number is initial.
      call function 'DEQUEUE_ALL'.
    else.
      call function 'DEQUEUE_ALL'.
    *  message i036.
    endif.
    Regards,
    RIch Heilman

  • Why Transaction Date Line Earlier Created than Creation Date and Make Wrong Sequence?

    Hi Guys,
    In material transaction record, we have two different item and transaction : First is Move Order Issue and then WIP Completion.
    Both of them have same problem. The problem is in the transaction_date and creation_date. If we see the transaction_date is earlier created than creation_date
    The query data from material transaction order by descending :
    SEGMENT1
    TRANSACTION_QUANTITY
    TRANSACTION_TYPE_NAME
    TRANSACTION_DATE
    CREATION_DATE
    PCG-001-0047
    150
    PO Receipt
    6/10/2014 16:54
    6/10/2014 16:57
    PCG-001-0047
    -30
    Move Order Issue
    6/10/2014 16:26
    6/10/2014 17:00
    SEGMENT1
    TRANSACTION_QUANTITY
    TRANSACTION_TYPE_NAME
    TRANSACTION_DATE
    CREATION_DATE
    BM-200-1
    774.48
    WIP Completion
    27-FEB-2014 23:07:47
    27-FEB-2014 23:08:38
    BM-200-1
    -165.77
    WIP Issue
    27-FEB-2014 23:01:58
    27-FEB-2014 23:09:21
    BM-200-1
    -213.21
    WIP Issue
    27-FEB-2014 14:11:44
    27-FEB-2014 14:12:50
    BM-200-1
    -770.04
    WIP Issue
    27-FEB-2014 06:01:50
    27-FEB-2014 06:06:46
    BM-200-1
    -332.19
    WIP Issue
    27-FEB-2014 05:51:11
    27-FEB-2014 05:51:37
    BM-200-1
    990.86
    WIP Completion
    27-FEB-2014 01:16:54
    27-FEB-2014 01:17:44
    This problem have made each transaction in wrong sequence. The PO Receipt must be created before Move Order Issue and The WIP Completion must be created before WIP Issue.
    And also this wrong place record take effect to costing.
    How can be happened? And any solution to solve and prevent this problem?
    Thank for your attention. Please Reply.
    Regards,
    Contrasena Luz

    HI luz..
    In your case number 1, its look like hapened due to date in form transact move order not automaticaly update.
    but i dont know. why transaction date in form transact move order not automaticaly update if we dont open close that form.
    anyone explain this?
    maybe little tips, you must inform your user to be close that form after he / she doing allocate / transact move order.
    or you can personalize that form.
    hope this help.
    regards,
    the pooh

  • Printing portfolio: wrong sequence

    Hi,
    I'm working with Adobe Acrobat 9 Pro Extended.
    I've created a acrobat pdf portfolio with a directory structure in it. For example:
    - Dir 1
         - file 1
         - file 2
    - Dir 2
         - file 3
    - Dir 3
         - file 4
         - file 5
    I added the file by drag-and-drop from my explorer.
    When i print this portfolio or when i combine the files into 1 single pdf, the sequence of the files is wrong: file 3, file 4, file 5, file 1, file 2.
    Is there anybody who can explain this and can tell me how to solve this problem?
    Kind regards,
    Kees

    hi,
    the bug u r telling is a functional issue and some thing related to printer configurations. this has nothing to do with our coding .
    correct me if i am wrong.

  • [bug] Album arrange is wrong sequence

    I'm Classical Music lover, and I have rip my large amount of CDs to iTune.
    I rename those album in to the sequence, such as Album No.1, Album No.2, Album No.3, ...
    Here I found a bug, if I have more than 9 album (going to have 2-digit), the sequence above go wrong like this
    Album No.1, Album No.11, Album No.12, Album No.2, Album No.3, ...
    but I want my album list to be look like this
    Album No.1, Album No.2, Album No.3, ... , Album No.9, Album No.10, Album No.11, Album No.12
    and I don't want to add zero in front of my 1-digit album like this
    Album No.01, Album No.02, Album No.03, ... , Album No.09, Album No.10, Album No.11, Album No.12
    Please fix this issue.

    These are user to user forums. Post your suggestion on the Product Feedback website.

  • Wrong Sequence

    I inherited an APEX application. And I'm scratching my head. It seems like it's using a different sequence that I thought it would when a new record is added via the APEX form. The page type for that particular page says DML Form and I have looked and can't find where it says which SEQ to use. The PK is a hidden field; but it is populating the data to the table, just from the wrong seq.
    Any help?
    Thanks
    -andrew-
    PS. I'm not sure what other information you'll need; so please let me know.
    Edited by: OracleNewbie828 on Aug 12, 2009 1:53 PM

    Hello,
    There are two possibilities;
    - Your sequence is used by a trigger which populates your primary key
    or
    - You have a page process in APEX that gets the next sequence number; look for Get PK in After Submit on your APEX Page.
    Hope that helps.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/

  • Wrong sequence settings used on my timeline; can I copy the timeline to a new sequence with correct settings?

    The clip properties are Frame size 1440x1080, 23.98 fps (yes a problem for FCE), Compressor:  Apple Intermediate Codec, but unfortunately I did all of my hard work on a 30 minute film on a sequence that has SD settings (Frame size 720x480), 29.97 fps, compressor: DV/DVCPRO- NTSC. I first noticed there was a problem when I could only get the exported quicktime movie to appear as a 4:3 when it was supposed to be a 16:9.  I have overcome that problem by exporting using quicktime conversion and customizing the settings to reflect the correct item properties of the original clips. 
    But my concern is that my project is still fundamentally based on a timeline that was created in a sequence with SD settings and that maybe I have lost some resolution quality.  I am sitting here looking at the iDVD preview and I am not always sure it looks as sharp as the same clip viewed in FCE dropped in a sequence with the right settings.  But maybe iDVD preview isn't as sharp, or maybe it's just myimagination.  Any thoughts?
    Ideally, what I would liketo do is to copy my timeline out of the first sequence with the wrong settings,and to copy it into a new sequence with the proper settings.  But I am wondering if that timeline is now "infected" with the wrong settings,and brings these over to the new sequence.  The guy on the Apple help linetold me this was unfortunately the case.  Am I really going to have tocompletely do this work over again to get a completely correct workflow?
    Any way around this?

    Al,
    very much appreciate your time on this.  Hopefully just one more question.  I am trying to figure out whether or not converting the tremendous amount of footage I have from this project shot in 24p will be worth it.  In my mind, it is only worth it, if by not doing it, I will end up with a finished product that does not have as good of a picture quality.  At this point, I dont care at all about having the 'film look' 24p is supposed to give you, I just dont the picture quality degraded somehow because FCE doesnt support 24p, and I am using a 29.97fps sequence to edit it. 
    So with all of that said, my question is this:
    1.  When you said before that when a clip hits a sequence it conforms to the properties of the sequence, what do you think is happening to the clip?  For instance, if the clip in the Browser as you shot it has got 1440 pixels for every 1080 lines and you place it on a 720x480 sequence, is some of that information literally disappearing?  That seems hard to believe.  I would think that kind of conversion would require a program to execute it and some processing time, but the drag and drop on a sequence is instantaneous.  And my HD footage on the SD sequence still seems to look better to me than my SD stuff, although that could just be perception.  Same issue with the frame rate.  When I drag and drop a 24fps clip onto a sequence set for 29.97 fps, how can the clip now have more frames per second?  That would be additonal information that was never captured in the first place.  How is that possible?  I do believe that the clips are changed in some way that affects the output, but it doesnt seem possible that 'conforming' to the properties of the sequence is the same thing as if you shot the original footage with those sequence settings. Something else must be meant by that right?
    2.  Will converting the original clips in streamclip change the frame rate..them from 24p to 29.97?  If they are still 24p, then don't you still run into the same problem when you edit in FCE?  And if they are changed to 29.97, how is that better than just dropping them onto a sequence set to HDV 1080 29.97fps and having it conform to that?  What exactly is the upshot of doing the streamclip conversion?  Especially if I don't care about the 24p look now.

  • Wrong Sequence no. in PO Confirmation (2LIS_02_SCN)

    Hi Experts,
    We had an issue with data source 2lis_02_scn in delta loads. whenever confirmations deleted and recreated Sequential no under PO is different from Delta CNFNR(Sequence Number Purchase Order Confirmation).
    For eg:
    User has created one AB line with some qty,delta picks up properly with Sequetial no 1. Afterthat deleted the same and created again.
    following are my content values:
    In ME23n Confirmations--> Sequntial no is showing as 3.
    Item Change log in ME23n is showing as follows
                                                                                    Doc. header 10562606                                                          
    Confirmation 0001                                                             
    XCUSER          28.03.2008 16.51.52             65151518                    
    Deleted                                                                       
    Confirmation 0002                                                             
    XUSER          28.03.2008 16.51.52             65151518                    
    Entered                                                                       
    now my delta is having CNFNR = 2 instead of 3. I have some lookups based on PO , Item and Sequential no... bcz of this wrong seq. no in delta enhanced fields are not getting updated properly.
    Please help me to resolve this issue.
    thanks in advance.
    regards,
    Raju

    Hi Dorothy,
    I am woking with the purchasing data and i am facing the same problem what u ae facing , my two extractors 2LIS_02_CGR & 2LIS_02_SCN are not pulling data i filled the set up table and the base tabels have data , the other purchasing extractors such as ITM, SCL are pulling data correctly  can  u suggest me what did u do to fix this problem.
    Regards,
    Abhiram

  • Wrong sequence settings...

    I have a piece of footage that I retrieved from my Canon XL2, selected an in and out and moved into my sequence. My project has a number of other sequences in it and they have all been fine. The film I selected has also been used in other sequences. Yet, in this sequence it isn't scaled correctly. Sorta like inserting a 16:9 into a 4:3 non anamorphic seq or something.
    The really strange part (at least for me) is that I can select an in and out point for the same section of film and drag it down to the same seq but in a new track above the earlier one and it comes in correct. I'm shooting 16:9 24p (same as I always shoot) and I've never had any problem like this before. So I'm a bit confused as to how I might fix it.
    I had finished the production of this particular sequence before I realized that it wasn't taking up the entire viewer window and exporting it produces an image that is squeezed and distorted looking. I checked my seq settings and everything appears correct there except that it was originally NOT set as anamorphic for whatever reason. but checking it doesn't see to fix it.
    Thanks for any help you might be able to provide.
    glenn

    Not really seeing that option in the preview window, however, it wouldn't be anything with the preview window for the following reason.
    1) When viewing a problem clip, the full width of the widow is filled, but the height portion has black bars at the top and bottom. (this is a problem as it should be filling the entire window.
    2) I drag from the same piece of footage, a new video clip down into the time line above my problem clip, and when I click to view it, it displays in the same viewer as it should.
    So with no changes to the viewer at all, one clip displays properly and another does not. Both clips come from the same footage and both clips are in the same sequence. I can even drop the newly selected clip in the same timeline as the problem clips and it displays properly. So something is wrong with the clip settings themselves, but I don't see what, or how to fix it.
    Thanks,
    glenn

  • Wrong sequence in selection screen generated by ABAP Query

    Hi,
    I am developing a query to display the data in the view.
    My query has 8 selection fields totally.
    As part of my requirement I have added selection parameter in the
    selections tab of the infoset and maintained the sequence as 9.
    Inspite of maintaining the sequence number as 9 in the infoset, It is
    appearing first in the selection screen of the query.
    I tried putting different numbers in the sequence number, but even it
    is appearing first in the selection screen.
    Can you please let me know how to display the selections declared in
    the infoset as per the sequence required.
    Thanks,
    Madhuri.

    Actually what happen when you declare your own fields in ABAP query . you have to care about the sequence . As an example if you’re selecting lets say state name , you have two variables
    <b>1-state
    2- land</b>
    for state you have to select land first , if your state is first and land is 2nd it gave you the error of sequence .
    Because you have to get data in land first in order to get state specific to the land .
    it should be
    1-Land
    2-State
    Just see the your fields , I’m sure you’re missing that .
    <b>You can also see the NO ( field ) in Query ( Sq03 ) . where you can define the seqence on selection.</b>
    hope this’ll help you .
    Pl...Award the points .
    Thanks
    Saquib<b></b>
    Message was edited by: Saquib Khan

  • Automatic creation of PS-project, WBS-elements in wrong sequence

    We have been able to build up a system where PS-project is automatically created once the cProject project is released. The PS project is successfully created and the WBS-elements correspond to the phases in cProjects project as wanted. However, the sequence of the WBS-elements is the other way round as the  sequence of the phase in cProject project. Is there an IMG node where we can define the sequence?
    We are using SAP RPM 4.5 (CPR Xrpm 450_700: Support package 0009)
    Any help appreciated

    Hi Antti,
    I may need some help from you.
    1. May I know how you are creating the PS project Automatically? based on Standard accounting integration.
    2. Are you creating the PD,WBS, Activity,Activity Elements etc in PS by mapping the PD,Phase, Task and Subtask of cProejcts?
    My client have a requirement to create the PS proejct in R/3 . Appreciate your immeadiate help.
    Thanks in Advance.
    psconsultant

  • Wrong sequencing with Oracle db using sequence table?

    Hi,
    we have a strange problem resulting in primary key violations in a table which is using a sequence (no native sequencing, but a sequence table).
    We use Oracle 9.2.0.x
    We have a table which is mapped to a Java type which has two derived types, i. e. in the table, two different "object types" are contained (the table contains all attributes of both classes). This table uses a sequence key as primary key.
    This works pretty fine when the table is left empty in the beginning.
    However, if we fill 15 records in this table by a SQL script - not by toplink! - (for migration purposes), and then set the initial sequence value in the sequence table to 500 (which should be greater than 15 ;-) by the same SQL script, then restart the application server (Bea Weblogic), and then try to add new records via Toplink, we get a primary key violation.
    It sounds odd but it seems as if Toplink would store the initial sequence value somewhere else and does not care about the value we entered "manually" in the sequence table.
    Can anybody give us a hint what the reason could be for this problem? Is it the inheritance of the Java Types from one abstract type? Does sequence number caching play a role (we used a preallocation size of 500 and of 1 - with the same negative effect).
    If you need additional information, don't hesitate to drop me a notice.
    Thanks,
    Andreas.

    Each time the application using TopLink starts it will lazily acquire the next pre-allocation batch of values from the database.
    You will see SQL entries like:
    UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + 50 WHERE SEQ_NAME = 'EMP_SEQ'
    SELECT SEQ_COUNT FROM SEQUENCE WHERE SEQ_NAME = 'EMP_SEQ'
    TopLink will increment the table's value and then use the values from 1 greater then initial value up to and including the value it just incremented the row to.
    In your example you should see, after re-starting the server, the next value to be 501.
    What exact version of TopLink are you using?
    When you enable SQL logging what statement do you see executed, related to the sequence table prior to the invalid INSERT?
    Doug

  • Bapi BAPI_GET_PAYROLL_RESULT_LIST fetches wrong sequence number

    Hi,
    I am using bapi BAPI_GET_PAYROLL_RESULT_LIST to get the sequence number by passing personal number and date range. This bapi instead of fetching the supplied period's sequence number, it fetches sequence number one less than expected.
    This data can be viewed from transaction pc_payresult. Can anybody suggest please.
    Regards,
    Taj.

    The infotype has to be changed to relevant.
    Edited by: Mohd Tajuddin on Dec 20, 2009 8:45 AM

Maybe you are looking for

  • Updating iTunes library after hard drive reformat

    Is there a way to upload songs from an iPod to the iTunes library? I had to reformat my hard drive and was able to upload purchases, but I would like to upload all songs on my iPod as opposed to reloading all the CDs.

  • Function module to check if a given file/folder path is valid or not?

    Hi, I am using function modules GUI_DOWNLOAD and GUI_UPLOAD. Is there any function module to check if a given file/folder path is valid or not? Thanks.

  • Problems with export to PDF from C# code

    I have problems export a Crystal report to pdf from code. Generating with database on accept is working as planned. But when I select production database (software on the same server) then I have problems with a few reports? The application just seem

  • Office Integration and non-MS browsers

    I have an 'issue' with Office Integration and non-MS browsers with our SharePoint 2013 on-prem enviroment (using SSO via ADFS). Background: our internal client wants to move to SharePoint sites for collaboration with external partners.  One of the se

  • Clean install and then restoring just what is needed

    I have a machine running SL. It is fine as far as SL is concerned. Back in time I started out with Panther on a 12" PB. I upgraded hardware and software a few times. As my profile shows I have a MBP 17" with the latest OS. I had a hard drive fail las