Skip to content
Report · Inventory

Items below reorder point

Items whose available quantity at a location is at or below the reorder point, with a suggested order quantity.

  • replenishment
  • operational
  • purchasing
Sample preview, fictional dataYour own figures appear after import.

01

About this report

Every active item and location with a reorder point set, where available stock is at or below it. Each row gives on hand, available, on order, the reorder point, the preferred stock level and a suggested order. The suggested order is the preferred stock level, or the reorder point when no preferred level is set, less what is available and already on order.

A suggested order of zero means enough is already on order. Filter on Location for one buyer's list.

02

Sample preview

Fictional figures in the shape you will see. Yours come from your account.

ItemDescriptionLocationOn handAvailableOn orderReorder pointPreferred levelSuggested order
CTL-V3Controller board v3Main Warehouse4221205020078
HNG-KITHinge kitMain Warehouse0-1507501006000
CRT-LShipping carton, largeWest Distribution Center18018002501,000820

03

The SuiteQL

This is the query each report runs. Read it, copy it, or change it after import.

Items below reorder point
SELECT i.itemid AS item,
       i.displayname AS description,
       BUILTIN.DF(a.location) AS location,
       a.quantityonhand AS on_hand,
       a.quantityavailable AS available,
       a.quantityonorder AS on_order,
       a.reorderpoint AS reorder_point,
       a.preferredstocklevel AS preferred_level,
       GREATEST(NVL(a.preferredstocklevel, a.reorderpoint) - NVL(a.quantityavailable, 0) - NVL(a.quantityonorder, 0), 0) AS suggested_qty
  FROM aggregateitemlocation a
  JOIN item i ON i.id = a.item
 WHERE i.isinactive = 'F'
   AND a.reorderpoint > 0
   AND NVL(a.quantityavailable, 0) <= a.reorderpoint
 ORDER BY location, i.itemid

04

Appears in

ReportInventory

Items below reorder point

Screenshot of the Items below reorder point report in HiScale Advanced Reports, filled with fictional sample data
Sample preview, fictional dataOpen image full size (opens in a new tab)