cancel
Showing results for 
Search instead for 
Did you mean: 

How can I get the information of confirmed TO that are packed in which HU?

former_member435196
Contributor
0 Kudos

Hi Gurus,

I am using process of packing through delivery. How can I get the information of confirmed TO that are packed in which HU?I tried VBFA table. But it is not giving me HU---TO information. It gives me information of HU and TO but not which TO packed in which HU.

Our client uses MDE process and pack transfer order in to HU. In SAP all the data gets updated but I want to know the information of which TO packed in which HU in SAP. I know that in case of pick HU scenareo, we can use the table LTHU but in my scenareo we can not get information from this table as HU is not pick HU.

Thanks in advance.

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member435196
Contributor
0 Kudos

Hello,

Thanks. I think this will solve my problem.

former_member435196
Contributor
0 Kudos

Hello,

Thanks for the reply.

Storage unit management is not active in the system. Hence when HU is created it can not be storage unit.This is simple case of packing through delivery and TO is packed inside the HU. How we could know HU and TO relationship?

csaba_szommer
Active Contributor
0 Kudos

Hi,

If you don't use HU managed storage location under your WH as per my best knowledge there will be no direct connection between the HU and the TO - that's why you cannot extract this information directly.

Maybe you can connect the two object using the delivery document as "key" and create a query using ABAP code:

1. TO connection with delivery: LTAK-VBELN = LIPK-VBELN and LTAP-POSNR = LIPS-POSNR

2. HU connection with delivery: VEPK-VEBLN-GEN=LIPK-VBELN and (VEPK-VENUM=VEPO-VENUM) VEPO-POSNR=LIPS-POSNR

HU number is VEKP-EXIDV.

Several TOs may belong to one delievry item.

Regards,

Csaba

Edited by: Csaba Szommer on Jan 27, 2009 12:30 PM

csaba_szommer
Active Contributor
0 Kudos

Hi,

SAP online help:

If a handling unit (HU) is put away, it becomes a storage unit with the same number in the warehouse. Handling units are treated like storage units in the warehouse. Number assignment occurs via the storage unit. Inventory is kept at HU-managed storage locations. Handling units can also be put away in decentralized warehouses.

http://help.sap.com/erp2005_ehp_04/helpdata/EN/2d/584bc5a70f11d2b44e006094b9b9dd/frameset.htm

So, the number of HU is the same as the SU number. That's why I think standard report LT22 should fulfill your requirement by inserting the SU number into the layout of the report.

Regards,

Csaba