Why transfer order is unable to print in LT31

Hi,
This is a question about LT31 printing problem.
my print code used and spool control data used are "02".
Problem:
I tested our system both in production and quality system on LT31 and both system behave differently though LT31 is standard SAP.
This is the problem. I tested three confirmed TO at PRD and immediately when I hit execute print, there are three Spools showing green color in SP01 (this means successful printed, with status "compl"). However, when I tested three confirmed TO at QAS, the three spools shown in SP01 were red color (i.e. with status "waiting").
Do you know what is going on? thanks again.
tuff
(p.s. the TO tested between the two system are similar, i.e. QAS is a copy version of PRD)

Hi,
Please run transaction LX31 (Analysis of print control table) for the transfer order and warehouse number and check where it is failing. Also you can check the error / information in SP01 by double click on spool number.
Hope this will help.
Reg,
Sudhir

Similar Messages

  • To print transfer order and storage unit labels in lt31

    Hi SAP Gurus
    1>Is it possible to print Transfer order and Labels simultaneously in tcode LT31(At a time when LT31 is executed
    If yes please guide me the selection parameter in Tcode LT31 and if any configuration required in the background
    2>Is it possible to print Transfer order and storage unit labels automatically when MIGO is posted.what are the settings required
    My client raised a query that before he was able to print both once Migo is posted .But now only trnasfer orders is getting printed but not SU.
    Requesting to help in this issues
    Thanks in advance
    Regards
    chandu

    you need to define the print control parameter in the customizing and whether you can print both(SU & TO) is depend on the print code which you specify in the setting under
    LE----WM---Activities-----Define print control
    After MIGO are you transferring the stock to SU managed storage type , as per STANDARD SAP stock goes to 902 which is Non SU managed so here you need to tell us the flow and the storage type where stock goes after MIGO also is that storage type is SU managed or not

  • Transfer Order Printer

    Hi
    I have set in the config (OMLV) when printing from storage type *** to ***, print to printer "ABCD". When I create a TO I see that printer "ABCD" in the LTAP-LDEST field on the screen but when I save the transfer order, it overrides the printer and prints it to the printer maintained in my default user parameters. If I check in the table LTAP, it still shows  it printed on ABCD but in my spool and in reality it is printing to the printer in my default parameters user profile. Do you know why this is happening?
    Edited by: Vik Luthra on Aug 17, 2011 6:13 AM

    Thanks Jurgen,
    It's nice to hear peoples production experience.
    We have considered a watermark on the label and TO output (Pick Slip/Putaway Slip).   I think we will end up developing this... I just need to find the time.
    What do you do when the production printer fails, needs ribbon or label stock change?  Do you ever need to make a quick change to the printer definition in  production environment. Is that handled by config, A/B box, IP config change for the output device?
    George

  • Unable to confirm transfer order due to error message "enter a storage unit

    Hi guys:
    I am unable to confirm transfer order due to error message popping up and saying "enter a storage unit", and I tried to search it in whole thread in the forum,it was suggestion to pick up destination storage unit via ls24, but I did went to ls24 and trying to click that line(transfer order) but unable to find the storage unit, so is there another way to fix it?

    Hi Allen...
    Pls check if your Storage Type is SU Active. If yes, then system will create a storage unit according to the setting done for the storage unit management, perhaps in your case you are confirmin TO for the putaway.
    Pls confirm and revert
    Regards
    Shiva

  • Transfer order Printing Error

    Hello,
    I have two issue with tranfer order
    1) We are printing transfer order through network order CN23 .The part has been issued to network order from 3 Group WBS element .So when we are printing the Transfer order it is just printing one WBS element on transfer order not the other two of them.So is there a configuration setting for the trnasfer order to print all the WBS element?
    2) When the user is printing tasfer order from his profile LT31 and including all the setting plus defined printer as LOCL the transfer order is not getting printed .Only when he is going to SP02 it is getting printing .So i guess there must be some setting that is missing in printer config .I checked in OMLV but couldnt find one .Can any one pls help.?

    Thanks for the reply Abhijit.I saw in OMLV in Print code that the printer has been set to 02 so does that mean it is going to Spool? If so how can i change the setting back to print immediately ?what needs to be done in printer setting to get that print immediately.
    My first question is related to Transfer order print out .We have network order which has 3 WBS elements from which the component has been issued.So when we print the transfer order via LT31 it is only printing one WBS not the other two of them.So my question is is there a way in config to change the Transfer order so that it print all the WBS element or it should be done via coding?

  • PRINT Transfer Order

    Hello Gurus
    I have this issue, where i have a Transfer Order, when i select Print, it is printing 3 copies of the TO's. i need to change the config so that when i print TO's , it shud print 2 copies only instead of 3 copies.
    Could you please help me with this issue.
    Thanks in Advance
    Nidhi

    Hello Nidhi,
    Check the settings in OMLV transaction code and change the quantity field in that.
    Hope this helps.
    Regards
    Arif Mansuri

  • Transfer order print issue

    Transfer order label of building A are printed automatically in building B instead of building A. how to check why it is happening, data avaialble is Process order number and transfer order number." what are the steps to select the right printer?

    for answer: Printing process order issue
    tcode : OMLV

  • How can i display the MRP controller in transfer order print?

    Dear all:
       When i print the transfer order(Tcode: LT31) ,i want to display the MRP controller in the output form.
    How can i get that ?
    I found the user exit MWMD0001 and add the code in the include like this:
       select  single dispo from marc
         where matnr = ltap-matnr
               and werks = ltap-werks.
         zdispo = marc-dispo.
    But caz the "zdispo"  could not been brought to the "print form " of the report RLVSDR40 which control the print LT31.So ,i failed.
    Anyone advice?

    The problem is as zdispo is declared in your user exit it doesn't become available. Had it been declared variable in the include of the program for LT31 you would be able to use it directly in the script.
    Try doing this instead in your layout set.
    /: PERFORM MRP_CONTROLLER IN PROGRAM ZABCXYZ
    /: USING &LTAP-MATNR&
    /: USING &LTAP-WERKS&
    /: CHANGING &ZDISPO&
    /: ENDPERFORM
    in your program ZABCXYZ.
    FORM MRP_CONTROLLER tables in_par structure itcsy
                               out_par structure itcsy.
    tables: marc.
    data: matnr like marc-matnr.
    data: werks like marc-werks.
    READ TABLE IN_PAR WITH KEY ‘LTAP-MATNR’.
    CHECK SY-SUBRC = 0.
    MATNR = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY ‘LTAP-WERKS’.
    CHECK SY-SUBRC = 0.
    WERKS = IN_PAR-VALUE.
    select single dispo from marc
    where matnr = ltap-matnr
    and werks = ltap-werks.
    IF SY-SUBRC = 0.
    READ TABLE OUT_PAR WITH KEY ‘ZDISPO’.
    CHECK SY-SUBRC = 0.
    OUT_PAR-VALUE = MARC-DISPO.
    ELSE.
    CLEAR OUT_PAR-VALUE.
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    This should work.

  • HT1040 why can i not seem to order more than one print at a time, which obviously becomes expensive with the shipping, it does not seem to offer me the facility to choose again?

    why can i not seem to order more than one print at a time, which of course becomes expensive with shipping, it does not seem to offer me the facility to choose again? either order or cancel!

    make an album containing the photos you wnat to print, select all photos in the album  and order
    LN

  • Smartform in LT31 Transfer Order Printing

    Hi,
    I have designed a smartform in LT31 Transfer Order Printing for SU Contents .
    I have to inclued in it user exit MWMD0001.
    I have an requirement in abap and I need more details on what exactly to modify in the program.
    What modifications should I make in exit_rlvsdr40_001?
    I need to print fields from tables ltap, ltak, rl03t, and mean.
    Your help will be greatly appreciated with required code,if anyone implemented before.
    Regards
    Manohar S

    I worked on same requirement LT31 Transfer Order Pick list.  For Form configuration part Functional consultants will do in spro--->Warehouse management. 
    They assigned a paricular warehouse number to this form. Weather it is multiple / single TO.
    Design a smartform and goto se38, give it program name : RLVSDR40.
      In this program find user exit 'CALL CUSTOMER '001'.
    when ever u double click on this exit. This will take to function module exit. i.e. RLVSDR40 . Here include, we have to call the smartform function module.
    let me know , any clarrification required.
    Regards,
    Vishvesh. K

  • Unable to print my past orders

    It's very annoying: you quite often change your website interface and it never improves. Once again this month, I am unable to print my past orders:
    I have this 500 Dispatching Error instead of my list of past bills.
    Will you be able to get it right one day?

    Getting the same problem. Pretty shoddy for a company the size of Adobe.

  • Transfer Order Printing using smart forms

    Hi All
    Our requirement is to print Transfer Order  ( WM ) for Goods Receipt & Delivery using Smart forms.
    Can we change the existing standard format (SAP script ) and use our own form(smart form ) to include some other data & print.
    If possible how to replace the SAP script to Smart form.
    Request  someone could guide in detail.
    Thanks in advance.
    Samson

    Hi
    When you create Smartform try to replace it in customizing OMLV. Not sure if it will work as it refers to Sap Scirpt in help description.
    It is also possible to write Z program for TO printing and hardcode SmartForm there.
    Regards
    Mariusz

  • Printing of transfer order . error Print indicator 029 not defined.

    Hello everyone.
    I need some help.
    when i run program RLVSD40 (Initiate printing of transfer order).
    i got error.
    Print indicator 029 not defined
    Message no. L3118
    what should i do to solve this error ?
    please help...

    is 029 your warhouse?
    if so then SAP found a record with print indicator "blank" , but this "blank" print indicator is not defined in OMLV.

  • Why can't I change qty of Transfer Order

    hi,guys
    I had allow partially delivery goods in order, but when I created Transfer Order from delivery order, I found that I can not change pick qty in transfer order, I used LT03 to create transfer order, so, why can't I change pick qty in transfer order, it is gery!!!

    Hi there,
    If you want to process only a partial quantity, then you have to create delivery only for a partial quantity.
    In a transfer order TO you have to pick the entire delivery quantity. Partial picking is not allowed in TO. Quantity field is blank in TO.
    For eg if you have 100 items in a sales order, but you want to process only 50 now. So create a delivery for 50 items & process TO. If you create delivery for 100 items, do picking in TO for all the 100 items. Just processing TO for 50 items is not permitted. This means that all quantities in delivery has to be picked to PGI.
    Regards,
    Sivanand

  • When we create Transfer order it should print by printer automatically

    Dear Sir,
              I wanted to print Transfer order automatically when we create Transfer order it should print by printer.
              No need to go LT31 & generate Spool & then print.
              Please provide config setting ASAP.
    Regards
    Manoj Chaudhary

    Hi Manoj,
    Goto SPRO-IMG-LE-WM-activities-define print control .
    There you will find all settings for defining spool code(tick immediate printing), printer,print code and the repective assignments and control parameters.
    -rahul

Maybe you are looking for