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

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

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

  • 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

  • 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

  • Printing transfer order ( tx LT31 ) with smartforms ?

    Hi all,
    Is it possible to assing a smartform for printing transfer orders? I didn't find any informations about that in this forum...
    Thank you in advance !
    Olivier.

    No. The Transfer Order configuration can only accept the SAPScripts.
    But however there is a work around.
    Create a Smartform.
    You can create own your program to select the data for the transfer order and use the smartform in it.
    In the Configuration, you can assign this program and a DUMMY SAPScript name (you may leave the standard SAPScript name).
    Regards,
    Naimesh Patel

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

  • 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

  • SAP WM Automatic transfer order print during confirmation

    Dear all,
    Could you please help me in order to configure the automatic printing of the transfer order during the transfer order confirmation (Tcode LT12).
    Please let me know configuration way in transaction code OMLV.
    Regards
    Gianluca

    Hi Jürgen L
    during the TO confirmation the users have the chance to change the destination bin, information that will be printed in TO form. For this reason is useful to set the automatic print of the TO at the time of TO confirmation.
    Regards
    Gianluca

Maybe you are looking for

  • Select * into Table1 from Table not working

    Hi, How to copy data from one table to other new table using select * into statement. I am getting missing keyword error when I use the statement select * into Table1 from Table Thanks a lot in advance. Regards, Praveen

  • Another question - I'm sorry!

    I'm sorry to bother you guys with another question. =p Just a quickie- How exactly do I get a movie from a DVD onto my computer after putting it in the drive? This is probably another stupid question, haha. ^_^; But I honestly haven't a clue. THANK Y

  • Custom Performance Counter not showing in AI

    Hello - I have created by own Performance Counter and added it to ApplicationInsights.config. I can see the counter in PerfMon and In Get-Counter. When I look in the AI UI I can't find it anywhere (I would think its under Diagnostic->Metrics). Any id

  • Working with 2 identical tables 1.2008   2.2009

    I have 2 separate tables 1 being an archive table(2008) and the other being a current table(2009).  I would like to do some comparisons and forcasting of the data however I have not been successful in linking and defining a selection criteria to pull

  • Firefox locks up when in Facebook, it has just started doing this

    Firefox locks up when in Facebook, it has only just started doing this, I get (Firefox not responding) at top of page. I have tried it in IE and have no problem. I log in using Lastpass.