cancel
Showing results for 
Search instead for 
Did you mean: 

Handling unit

former_member1292485
Participant
0 Kudos

Hello All

We are developing a RF Transaction for picking from WM and HU managed Sloc.

The requirement is after the Transfer order is confirmed and if the picked handling unit is Nested handling unit.For ex

Pallet +box(Packing instruction -10 box on each pallet)

If the picked nested handling unit is having only 5 boxes on the pallet,Client wants to fill the remaining empty space with Packaging material.And its Needs to be displayed in the HUMO Monitor in the Auxillary tab page.

Is there any function module which can meet this requirement.

Thanks in advance

Regards

Shaker

Accepted Solutions (1)

Accepted Solutions (1)

balaji_ganesan2
Contributor
0 Kudos

Hello Shaker,

Could you please confirm whether your requirement is when it's performed using Mobile transactions like LM47?

Thanks & regards,
Balaji

former_member1292485
Participant
0 Kudos

Hellio Balaji

At the time of packing if the user finds any empty space on the pallet he should get the Option for filling the space with empty packaging Materials.

Regards

Chandra

mihailo_sundic
Active Contributor
0 Kudos

Hi Chandra,

When your custom RF transaction confirms the TO item, it shoud first check if the
If you have complex packing possibilities you need to leave that as a decision for the picker, e.g. a button (e.g. F7) to be able to call the screen for packing some packaging materials with the

Your ABAP-er should code it like this (IMHO):
- First confirm all the items
- If your picker pressed F7 button (or by checking picked qty VS. packing instructions, and you still have more space on pallet), call new screen e.g.9987 which will require scanning the packaging material bar code.
- After that, it would be required to enter the qty of the packaging material you want to place on this HU.
- After confirming, your ABAP-er should code in this sequence:

1) Function module for creating a delivery item with type as packaging material and your scanned material number and qty, saving the delivery. Function module that can probably be used is: BAPI_OUTB_DELIVERY_CHANGE.
2) FM for creating a TO for that new delivery item, for the same material and qty. FM: L_TO_CREATE_DN.
3) Confirming this newly created TO. FM: no need for specific FM, you can confirm it immediately upon creating by an indicator in bapi L_TO_CREATE_DN in step 2).

Sounds complex but should be doable.

Regards,
Mihailo

Answers (0)