fulfillmenttools
  • Welcome to the fulfillmenttools Platform Documentation
  • Getting Started
    • Setup your access to fulfillmenttools
    • Make your first API Calls
      • Add your first facility
      • Add your first listing
      • Place your first order
    • Core concepts & terminology
      • Order Flow
    • Postman Collection
    • Client SDKs
    • FAQ
  • Clients
    • Backoffice
      • First steps - Registration
      • Network view
        • Home
        • Orders
          • Unroutable orders
          • Pre-orders & Backorders
          • Order History
        • Inventory Management
          • Stock Overview
          • Channel Inventory
        • Facilities
        • Users
        • Returns
        • DOMS configuration
        • Settings
        • Analytics
          • DOMS Pages
          • Fulfillment Operations Pages
          • Inventory Pages
          • Downloads Page
      • Facility view
        • Home
        • Inbound
        • Tasks
        • Listings
        • Storage Locations
        • Facility
        • Users
    • Inventory app
      • Registration Inventory App
      • App sections
        • Inbound
        • Storage and relocation
    • Operations app
      • Android
        • Manual Registration
        • Android Enterprise Registration
        • Sections
          • Picking
            • Load Units (legacy)
            • Substitute items
            • Weighed or measured products
            • Scanning configuration
            • Picking Methods
              • Batch Picking
              • Multi Order Picking
          • Packing
          • Handover
          • Returns (legacy)
        • Printing
        • Notifications
      • Webapp
        • Packing
      • Overview features Android & Webapp
    • Technical requirements
      • Zebra Hardware Scanner Configuration
      • Honeywell Hardware Scanner Configuration
      • Supported barcodes for camera scanning
      • Requirements for fft applications
      • Zebra printer
    • Returns app
      • Handle unannounced returns
      • Handle announced returns
  • Products
    • Core Functionality
      • Process
        • External actions
      • Add and manage facilities
      • Notification Center
      • Checking on features
      • Tags and Stickers Concept
      • GDPR
      • Remote Configuration
      • Expiry
      • Target time
      • Time calculation for queries of future availabilities (LPS-calculation)
      • Interfacility Transfer
    • Carrier Management
      • Overview
        • Available Carriers
      • Concepts
        • Carrier Country Service Mapping (CCSM)
        • Non-delivery-days
        • Custom Carrier & Headless operation of Carriers
      • Providing needed data
    • Fulfillment Options
      • Fulfillability Check
      • Checkout Options
        • Available fulfillment options based on basket
        • Earliest possible delivery date
        • Available delivery dates within time-period
        • Availability for delivery date
      • Delivery Promise
    • Inventory Management
      • Configurations
      • Entities
        • Listing
        • Stock
          • Stock Properties
        • Storage Location
        • Zone
      • Global Inventory
        • Stock availability
        • Channel Inventory
        • Expected stock
        • Inbound Process
        • Reservations
        • Safety Stock
      • Inventory Control
        • Inventory Traits
        • Measurement Units
        • Outbound Inventory Tracking
        • Storage Location Recommendations
    • Order Fulfillment
      • Headless Order Fulfillment
      • Pick Jobs
      • Zone picking
      • Load Units
      • Custom Service
      • Handover Jobs
      • Add External Documents
      • Configurations
        • Picking Configuration
          • Picking methods
          • Short Pick Reasons
        • Packing Configuration
          • Packing Container Types
        • Print / Document Configuration
        • Tag Configurations
          • Parcel Tag Configuration
        • Handover Configuration
        • Operative Container Types
    • Order Routing
      • Entities
        • Ship-from-Store Orders
        • Click-and-Collect Orders
        • Locked Orders
        • Custom Services Orders
          • Simple Custom Service Order
          • Complex Custom Service Order
      • Fences
      • Ratings
      • Order Split
        • Order split - initial routing
        • Order split after shortpick
        • Item bundles
      • Reroute
      • Shape the routing with the DOMS Toolkit
      • Decision logs
    • Returns Management
      • Returns legacy
        • Available status
      • Returns 2.0
        • Return Reasons
        • Item Conditions
        • Integrating Returns with Events
    • Use Cases
      • Demand-Driven Replenishment
      • Expected stock in availability
      • Multi Order Picking
      • Interfacility transfer
      • Assigned Users
  • Connecting to fulfillmenttools
    • General Topics
      • Use external identity providers to authenticate to fulfillmenttools
        • Microsoft Entra ID / Azure Active Directory (AD)
      • Public Event Export
      • Available Regions
      • Backup Policies
    • GraphQL API
    • RESTful API
      • General Topics
        • API Release Life Cycle
        • Versioning
        • Authorization
        • Customization via Attributes
        • Update Guarantees
        • Rate Limits
        • Resource Timestamps
        • Pagination Interface
        • Localization
        • Custom Attributes
      • OpenAPI Specification
        • Swagger UI
        • OpenAPI 3.0 Spec
    • Eventing
      • Structure of an Event
      • Available Events
      • Tutorial
    • commercetools Connect
    • Integration Tutorial
      • Adding facilities
      • Adding listings to facilities
      • Configuring stocks
      • Carrier configuration
      • Placing orders
      • Checkout Options
      • Distributed Order Management System (Routing)
      • Local fulfillment configuration
  • Incident Reporting
    • How to report incidents in fulfillmenttools
    • How to define incident priorities
  • Release Notes
    • Release Summary – May 2024
    • Release Summary – June 2024
    • Release Summary – July 2024
    • Release Summary – August 2024
    • Release Summary – September 2024
    • Release Summary – October 2024
Powered by GitBook
On this page
  • Creating zones
  • Assigning users to a facility
  • Assigning storage locations to zones
  • How to create a picking task with products in zones

Was this helpful?

  1. Products
  2. Order Fulfillment

Zone picking

PreviousPick JobsNextLoad Units

Last updated 5 months ago

Was this helpful?

This page is outdated. Please go to our new documentation under .

It is currently possible to use our first version of zone picking on our platform. On this page all available options are described.

Creating zones

By using POST call at /api/facilities/:facilityId/zones it is possible to create zones easily for each facility:

{
  "name": "Name of the zone",
  "score": 0
}

Assigning users to a facility

By using POST or PATCH call at /api/users/:userId each user can carry at least one zone. After a zone is created, it can be assigned to any available user. Assigned zones must be given in context of assigned facilities:

{
    "version": 1,
    "actions": [
        {
            "action": "ModifyUser",
    "assignedFacilities": [
        {
            "facilityRef": "a16dcc81-c16f-4bd5-bbcd-375a42dfd2c5",
            "assignedZones": [
                {
                    "zoneRef": "93cfae89-08c7-46bf-8eb0-c91dc836fdf2"
                },
                                {
                    "zoneRef": "cd059486-4b35-4e4a-a172-8dcb85e2d792"
                }
            ],
            "id": "ca996568-9a6c-4538-a10d-eba16c7cac35"
        }
    ]
        }
    ]
}

Assigning storage locations to zones

For a user to be able to pick products from a specific zone, those products need to be linked to that zone. Currently, this linkage can only be achieved through the use of storage locations that have an associated zone. Consequently, products located in these storage areas will be automatically assigned to the respective zone.

By using PUT or POST at /api/facilities/:facilityId/storagelocations/:storageLocationId the zone can be assigned to a storage location.

{
  "version": 1,
  "tenantLocationId": "S4",
  "name": "S4",
  "type": "SINGLE_STORAGE",
  "runningSequences": [
  ],
  "scannableCodes": [],
  "zoneRef": "ID-OF-THE-ZONE-THE-SL-BELONGS-TO",
  "traits": ["PICKABLE"]
}

How to create a picking task with products in zones

Upon the zone's creation and its assignment to both a zone and storage locations, it becomes feasible to generate picking tasks that can be executed by users assigned to that particular zone.

This can be achieved by creating a picking task that includes a tenantArticleId associated with a storage location that has a designated zone. As a result, this newly created picking task will be automatically allocated to that specific zone.

How does that effect the visibility of a picking task when it needs to be picked within a zone?

Example: Zones A, B and C are available in the facility Picker is assigned to zone A and B.

  1. Pickjob with Zone A and B => picking task is pickable

  2. Pickjob with zone A, B and C => picking task is pickable

  3. Pickjob with zone C => picking task is not pickable

  4. Pickjob with zone B and C => picking task is pickable

When a user doesn’t have any zones assigned, they see every picking task

How do notifications for zones work?

Notifications also function at the zone level. Whenever a picking task becomes available for a user within their assigned zone, they will receive a notification. However, if the picking task is not accessible to the user within their assigned zone, no notification will be received.

How can a picking task receive a zone?

Presently, the picking task gets automatically assigned to a zone immediately after a product is allocated to a storage location within that zone.

Can other tasks can handle zones?

Not yet. This will be added to our product soon.

Is it possible to divide a picking task into various segments when allocated products need to be assigned to different zones?

Not yet. This will be added to our product soon.

https://docs.fulfillmenttools.com/documentation