2008 Nov 15 3:39 PM
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 .
2008 Nov 15 6:54 PM
Hi,
This looks like a SAP SD Functional Query. Please move this to the SD Functional Forum so as to get faster response....
2008 Nov 15 9:29 PM
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.
2008 Nov 17 4:31 AM
No i need to combine 2 handling units which has different materials into new handling unit..
2008 Nov 17 4:49 AM
Table VEPO will have the information for determining the hierarchy.
2008 Nov 17 7:29 PM
Hi,
Then it is very simple use the same select query above and add all handling units with same items.
Thanks,
Sree.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |