Multi order picking

Summary

Multi order picking is a picking method where a picker simultaneously collects items for multiple tasks in a single run through e.g., the warehouse. This method increases efficiency by reducing the distance covered, as opposed to picking items for one task at a time.

Use case example

A company has established the following requirements for its operational picking process:

  1. Multi order picking is to be implemented exclusively for one designated facility, in this case a warehouse, while single order picking is to be utilized for all other facilities.

  2. No more than five tasks may be picked simultaneously to ensure efficiency and manageability.

  3. Picking operations are conducted using load units, with a total of five distinct load unit types available.

  4. Upon completion of picking, the load units are transferred to a designated packing station. The packing process begins from this location.

Configure multi order picking

1. Configure the picking method for a warehouse facility

Picking method MULTI_ORDER must be set in the designated facility with the facility REST API, in this case the warehouse. The default SINGLE_ORDER applies in all other facilities, which is set in the picking configuration.

2. Configure the maximum of tasks for multi order pick

The picking configurations REST API must be set to the following:

    "multiOrderPickingConfiguration": {
        "maxAmountOfPickJobsForMultiOrderPick": 5
    },

3. Create load unit types

OperativeContainerTypes must be created and defined in which fulfillment process step, so called allowedOperativeTypes are required. This happens with the operative container type REST API.

4. Create storage locations

This is the storage location, where you store your load units at the end of the picking process. It can be created with the storage location REST API.


How to fulfill a task in multi order pick

When everything is configured, you are ready to fulfill your tasks with multi order picking.

  1. Create a multi order pick

  2. Start the pick run

  3. Add items to load units

  4. Store load units on the configured storage location

  5. Finish the pick run

4. Finish the pick run

The pick run result can be finished by using the PickrunFinishActionParameter with the actions REST API of the pick run. After all that, you have successfully picked multiple tasks with the multi order pick method.

Last updated