Transfer Order printing issue

Hi, log. executioners )
I've faced such an issue while printing TO via standard WM print functionality.
TO was created for moving batches which has no SLED maintained in it's master and printed using form LVSTSOLO. SLED was missing in a document.
I specified required data in a batch master, and tried to reprint TO. But SLED in paper slip is still missing in the print document.
As far as I have understood, the print tables (the data for printing SAP Script forms is taken from) are filled while TO posting only, but not while print program run. So changes in linked objects have no influence on that data.
Am I right? And is there any possibility (some kind of a background job or smth) to update print tables after changes were made?

Hi Guys
Unfortunately I do not think that you will get an answer now. Either your question is not simple or we do not know the answer.
So in the interest of keeping the Forum tidy and easier to surf through could you please close your thread and either try one of the other forums or try another post. I do not think that most people will bother to look this far back anymore.
Sorry I cannot help as I would if I could.
Regards
Frenchy.

Similar Messages

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

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

  • Excise duty condition type and Purchase Order Print Issue

    Dear Friends,
    We have a issue related to Purchase order print out.
    We are maintaining TAXINN.
    We have implemented CIN and we are maintaining Excise Conditions i.e. Basic Excise in JMOP
    In FV11 we are maintaining values for JMOP with plant and material Group combination.
    In Purchase Order Tax calculation is happening correctly.
    But issue is to find the value of taxes for Purchase Order Print.
    We are using function module CALCULATE_TAX_FROM_NET_AMOUNT
    and passing values of Company Code, Country, Currency, and Base amount to get the entries in condition types.
    But we are not getting any entry even after passing the values.
    How we can get these values in JMOP.
    Regards
    Kant

    Why do you want to calculate the taxes during the PO Print when you are getting correct values in PO itself?
    Modify your print program with pulling values directly from EKPO/ EKKO Tables and display it to Spool.
    check with ur ABAP Person

  • Transfer Order Status Issue

    Hi All.
    For the delivery we are Creating the Transfer Order using the Transaction LT03 . Currently we are having issue with Transfer Order status.When we look the document flow for the transfer order, TO status reads as "Completed" instead of "open" whereas deleviry status is still in "being Processed" status.
    Please give me the solition , why status goes to "Complete" status instead of "Open".
    Thank you,
    Cha
    Edited by: Chabalan on Oct 5, 2011 10:57 AM
    Edited by: Chabalan on Oct 5, 2011 11:00 AM

    Hi Cha,
    I thought it is a one-off issue.
    You mean the TO is not yet confirmed using LT12 but status already shows complete?
    Delivery is in correct status as the pick/pack and PGI steps are not completed..but for TO status, if it's confirmed then it should be complete.
    Pls confirm what's your scenario?
    Regards,
    Raghu.

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

Maybe you are looking for