Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

creating handling units

Former Member
0 Likes
882

i hav 4 handling units in delivary.

say 1

2

3

4

-


Total 4 Handling units

now i need to pack handling unit 3 and 4 into new handlin unit 5 -


can u expain how in VL02 transaction.

so that now after the above change

1

2

5 this includes (3 & 4 handling units ) .

-


Total 3 handling units

Am getting these handling units from vkep table .

Now I need to diffrentiate between 1 2 5 handling units and 3 4 handling units

3 & 4 packed inside 5 th handling unit.

how to identify like they are inside the other handling unit .

i hav 4 handling units in delivary.

say 1

2

3

4

-


Total 4 Handling units

now i need to pack handling unit 3 and 4 into new handlin unit 5 -


can u expain how in VL02 transaction.

so that now after the above change

1

2

5 this includes (3 & 4 handling units ) .

-


Total 3 handling units

Am getting these handling units from vkep table .

Now I need to diffrentiate between 1 2 5 handling units and 3 4 handling units

3 & 4 packed inside 5 th handling unit.

how to identify like they are inside the other handling unit .

5 REPLIES 5
Read only

Former Member
0 Likes
830

Hi,

This looks like a SAP SD Functional Query. Please move this to the SD Functional Forum so as to get faster response....

Read only

Former Member
0 Likes
830

Hi,

If i got you correctly, you might be talking about combining multiple handling units if you have same material number or same bill of lading.

Follow below steps.

1) select venum

velin

posnr

vemng

from vepo

into table i_vepo

where vbeln = (LBBIL_IT_REF)-REF_DOC

and posnr = (LBBIL_IT_REF)-REF_DOC_IT.

if sy-subrc eq 0.

sort i_vepo by venum.

loop at i_vepo into wa_vepo.

>> Here combine the line items if you have same VEMNG in to new itab.(you have write logic here)

endloop.

2. then read this itab for checking other handling units.

Thanks,

Sree.

Read only

0 Likes
830

No i need to combine 2 handling units which has different materials into new handling unit..

Read only

0 Likes
830

Table VEPO will have the information for determining the hierarchy.

Read only

0 Likes
830

Hi,

Then it is very simple use the same select query above and add all handling units with same items.

Thanks,

Sree.