cancel
Showing results for 
Search instead for 
Did you mean: 

Transfer Order Print based on plant or storage location

Former Member
0 Kudos

Hi WM Gurus,

We have two plants which has one common warehouse number. The printing function in the warehouse management can be managed based on warehouse number or storage type or warehouse movements. However, we have requirement to select different printers to print transfer orders based on the plants or at least based on storage location.

Can anyone provide any idea?

Thanks,

-Shekhar

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

One thing you can try out is in the IM-WM movement type table (tcode - OMLR) you can use the "storage location reference" to have a different movement type for one storage location. ie if you have 101 as the linked WM movement type to IM movement type 101 for sloc reference blank you can use another WM movement type (say 901) to link 101 IM movement for sloc ref A(say)

Then in the print settings you can have two different print codes for both the movement type.

I know this will lead to few customizing changes(like defining new WMmovement type and change to OMLR settings). Still if the requirement is a must you can check this out.

Former Member
0 Kudos

Standard configuration does not provide this functionality. However, it could be possible through like YROT_VARV and/or Z-Table and store printer name by plant,storage location, and print code or movement type combination.

Maybe somthing like this....

SELECT single val1

FROM yrot_varv INTO l_val1 WHERE name = custom_print

AND val1 = werks.

AND val2 = sloc

AND desc = print_code:printer_id

END SELECT

Just giving suggestion...hope this helps.