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?

Similar Messages

  • 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

  • Transfer Order Print

    Hi
    Currently transfer Order Print output is sorting by Material Number. I want to take
    print sorting by Source Stroage type.
    How should i change this settings ?
    Thanx
    Key

    Hi Key rams,
    You must define sort profile for your warehouse number, with 1st sort criterion is VLTYP field(Source Storage Type) in OMLV. Then you must assign this sort profile into your print code that you use for print transfer order.
    I hope this solution can answer your problem.
    Please rewards point if helpfull.
    Regards
    Gunawan

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

  • 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

  • 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

  • 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

  • Transfer order  print LT31

    Dear all,
    How to configure form and Driver program for Transfer order  LT31.
    I want to create it through smartform.
    Please let me know configuration way and design with smartform possiblities.
    Regards
    Mohit

    Hi,
    LT 31 is a standard tcode for transfer order. Standard program for printing transfer order is RLVSDR40 which internally calls sap scripts.
    However you can design your customised code which is a copy of RLVSDR40 program but in your customised program, you have change logic of calling sapscript and replace it with smartform logic.
    Like you have to commnt OPEN FORM,WRITE FORM, CLOSE FORM function modules and call below code :-
    Get the name of the function module
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lw_form
        IMPORTING
          fm_name            = lw_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
        MESSAGE a003(zqsvmessage) WITH fs_irldrc-formu.
      ENDIF.                                " IF sy-subrc <> 0
    here you have to pass form name(SMARTFORM name)
    However we can make changes in configration by using Tcode OMLV here you have to specify:-
    warehouse number,
    print code number,(putaway, picking,kanban etc)
    form name(here you can assign SMARTFORM name)
    Hope this works for you.
    Thanks..............

  • Transfer order printing.

    Hi,
    To print the Picklist and labels we are using the sap standard Tcode LT31. Here we can print a single document. Is there any other hwere i can print multiple transfer orders or a series of transfer orders at a time

    Hi Sunil,
    The system determines how to print combined pick lists based on a table entry in customizing. For this task, the system branches to the report RLKOMM40 "Print Combined Pick List". You can also enter a printing status in a table that instructs the system to print individual transfer orders (TOs). In this case, the system prints transfer orders normally.
    With report RLKOMM40, you can print both combined pick lists and individual items. The advantage of printing single items with RLKOMM40 instead of RLVSDR40 lies in the capability to sort transfer order items for release as a group at a particular time.
    For details check : http://help.sap.com/saphelp_45B/helpdata/en/c6/f83e334afa11d182b90000e829fbfe/content.htm
    For Printing Process : http://help.sap.com/saphelp_45B/helpdata/en/c6/f83e404afa11d182b90000e829fbfe/content.htm
    Edited by: m_n_novice on Aug 31, 2009 12:28 PM

  • Transfer order printing-Urgent

    Hi
    Do anybody know how to print multiple transfer orders in a single go rather than printing TOs one by one using LT31.
    Thanks

    Hi Terry,
    How about LX21?
    Regards

  • Transfer order printing in release ECC6.0

    Hi all.
    My question is very short. Is it possible to print transfer orders in release ECC 6.0 using smartforms or PDF-forms? I have been checking some SAP notes, and in previous releases the TOs can be printed only in sapscript, but I am not sure if it is already possible in release 6.0 to print them in PDF-form or smartform.
    If it is possible, do you know which standard print program manage the smartform or PDF-form printing, instead of sapscript print program RLVSDR40?
    Thanks in advance.

    Thanks for your reply, Chenna.
    Finally we are going to develop this form in Sapscript. I hope that in future releases it will be ready to develop in smartform or pdf-form.

  • LT31 Transfer Order Printing

    Hi,
    We have a requirement, in which we have to print the transfer order details.
    This has to be called from the LT31. We have to create our own script/smartform.
    The problem is ,
    whether to create a script or smartform.
    After creating it, the exact location to configure that script/smartform in NACE.
    Or is there anyother place ...
    Please help me with it...
    rewards assured for a helpfull answer

    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

  • Urgent -  Transfer Order Confirmation Error- Item category Type Not defined

    Hi Gurus
    i need your help for an <b>urgent production issue</b>
    FYI we have full fledged Wm implemented
    the users are not able to confirm the TO's created and it shows an error that <b>ITEM CATEGORY NOT DEFINED, </b>
    i have checked in the STO in me23n which has many different materials in it and it is all having item category = U and also delivery is generated and it also has some item category defined in it also
    so can you please help me why this is happening and not able to confirm the Transfer orders
    thanks in advance for any help
    regards

    Chakri
    Could you solve the problem. If so could you tell us what the solution.
    Thanks
    Aju Paul

  • Transfer Order Confirmation error

    Hai all,
        WHen I am trying to confirm the transfer order it is showing the error
    'Enter storage unit'
    and does not allow to confirm the transfer order. what may be the problem?.
    Kindly help me to resolve this.
    Thanks in advance,
    S.Jenibalet.

    Hi
    There seems to be a lot of information for you to take in but let me try to simplify it.
    In the strategies in the config you can specify which storage unit types can go in to which storage type and which bin types can go in to which storage uniy type etc.
    If (and I am sure that you have) you have SUT check ticked in the config of your storage type then everytime you want to place stock in to this storage type the system will check the SUT and if required will ask you for it.
    There are two ways round this.
    1. Take off the SUT check in the appropriate st types if you do not need it and this issue goes away.
    2. Ensure that all of your strategies in OMM1 are set and that you have the LE QTY, UOM and SUT set up in the WM2 view in the material master. If you do this the system will know the SUT and will default it in for you.
    I hope that this makes things clearer. Whilst I appreciate all of the replies you have had if you do not do one of these two things it will continue to happen.
    Regards

  • Customized Transfer Order print program

    Dear friends, I am facing a TO printing related problem. Please help me.
    In warehouse management, once the transfer order is saved, the system will print out the TO automatically. This can be done in configuration. However, the requirement wants also that we use customized print program and forms instead of standard SAP ones. My idea is like this. I create a SMARTFORM and a print program. The program calls the smartform inside the program. However, where can I configure this customized print program in the system?
    If anybody has done a similar task like this, please enlighten me.
    Your help will be mostly appreciated:D

    Hi
    Please go to t.code NACE. Select the appropriate Application for Transport Order & click on 'Output Types'. Select the Output Type if already exists (or enter the new output type if any) and click on the Processing Routines. Here you may provide the Print Program, FORM routine and the SmartForm name.
    Hope this helps.
    Thanks
    Prashanth

Maybe you are looking for

  • Satellite U920T - dropping wireless connection

    My Satellite U920T seems to sporadically drop its wireless connection and reverts to 'limited' connection which provides no internet access. This is the case on both my home and work wireless networks. Can anyone offer any advice please? Thank you

  • Drag and drop mapping UI element/functionality

    Hi All, we are searching for functionality, in which the UI should contain drag and drop mapping options. e.g. we have ztableA(cities) containing values: NewYork London Tokyo Moscow we have ztableB(countries) containing values: Russia UnitedStates Ge

  • Confirming the production Order

    hello, i am using BAPI_PRODORDCONF_GET_TT_PROP and BAPI_PRODORDCONF_CREATE_TT to confirm the production order. well..the issues are : 1. for eg: i am confirming only 40 from the total qty 45, but in the result, it takes the total qty - 45. it doesn't

  • Itunes always opening

    My Itunes seems to always open whenever I enter my account from my brothers or parents Itunes is open. I know it is not me as I always quit every application. Anyone know how I can stop it from opening?

  • This is a WEARED one

    i have the latest quicktime (just did a fresh format of the computer), it runs any quicktime video imbedded in a web page perfectly, but any quicktime video saved to a drive shows up as super colorful fuzz. tried reinstalling several times, any thoug