> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kibocommerce.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Inventory Workflow Examples

Refer to the following examples for some common inventory workflow scenarios.

<CardGroup cols={2}>
  <Card title="Inventory Concepts" icon="book-open" href="/concept-guides/inventory" horizontal data-rec="concept-guide">
    Learn about inventory management fundamentals
  </Card>

  <Card title="Developer Reference" icon="code" href="/developer-guides/inventory" horizontal data-rec="developer-doc">
    See the Inventory API documentation for programmatic access
  </Card>
</CardGroup>

## Back Ordering

The following example shows a situation in which you want to track negative inventory quantities in order to keep your inventory totals accurate at the end of each day after counting and entering incoming stock. Because you know that you're going to receive new stock, you also want to allow shoppers to backorder items, and you also want to mark items as fulfilled as necessary.

In the following example, you've already enabled **Allow fulfillment without stock on hand** for the location, and you've enabled **Allow backordering** for a specific product.

1. You start with the following product inventory quantities:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-1.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=aa5743174349f311784363159bdc03ce" alt="Example of default product inventory quantities set to 0" width="664" height="128" data-path="img/inv-example-1.png" />

   * **Available**: 0
   * **On Reserve**: 0
   * **On Hand**: 0
   * **On Backorder**: 0
2. A shopper places an order for three of the product, which creates the following inventory quantities:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-2.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=0a0e4f60a97cf9954d4b2a33f3a5fe74" alt="Example of a product with 3 quantity on reserve and 3 on backorder" width="650" height="129" data-path="img/inv-example-2.png" />

   * **Available**: 0
   * **On Reserve**: 3
   * **On Hand**: 0
   * **On Backorder**: 3
3. You then mark two out of the three items as fulfilled in Kibo eCommerce:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-3.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=ffc9ccb05d293c8420801d0b8fd29c22" alt="Example of a product with 1 quantity on reserve, 3 on backorder, and -2 on hand" width="670" height="135" data-path="img/inv-example-3.png" />

   * **Available**: 0
   * **On Reserve**: 1
   * **On Hand**: -2
   * **On Backorder**: 3\
     The -2 *on-hand* quantity is essentially your *fulfillment debt*.
4. You then receive five quantities of the product, and add this to your on-hand quantity:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-4.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=146469fd220e517d98b27f67fd003fcc" alt="Example of a product with 2 quantity available, 1 on reserve, 3 on hand, and 0 on backorder" width="664" height="136" data-path="img/inv-example-4.png" />

   * **Available**: 2
   * **On Reserve**: 1
   * **On Hand**: 3
   * **On Backorder**: 0\
     Your fulfillment debt is subtracted from the on-hand quantity, and Kibo eCommerce calculates the available quantity. The on backorder quantity also returns to zero, because you now have enough on-hand quantity to fulfill the remaining on reserve quantity.
5. You fulfill the remaining item:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-5.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=20e059f7d925e4039e713f1ce404b349" alt="Example of a product with 2 quantity available, 2 on hand, and 0 on reserve and backorder" width="692" height="134" data-path="img/inv-example-5.png" />

   * **Available**: 2
   * **On Reserve**: 0
   * **On Hand**: 2
   * **On Backorder**: 0

## Manual Inventory Adjustment

In the following example, you manually adjust your on-hand quantity after performing an inventory audit, even after shoppers have placed orders for the product:

1. You start with the following product inventory quantities:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-6.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=47fb6461a04be6ee745c5419c4c5f96b" alt="Example of a product with 3 quantity available, 4 on reserve, 8 on hand, and 0 on backorder" width="649" height="138" data-path="img/inv-example-6.png" />

   * **Available**: 3
   * **On Reserve**: 5
   * **On Hand**: 8
   * **On Backorder**: 0
2. You then perform an inventory audit and manually set your on-hand quantity appropriately:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-7.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=d2b78dd37396ebd386c09bdf9521f7f6" alt="Example of a product with 0 quantity available, 5 on reserve, 2 on hand, and 3 on backorder" width="663" height="143" data-path="img/inv-example-7.png" />

   * **Available**: 0
   * **On Reserve**: 5
   * **On Hand**: 2
   * **On Backorder**: 3
3. You mark one item as fulfilled:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-8.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=64fe6306a682f7ae9c77fa2fb99b0c55" alt="Example of a product with 0 quantity available, 4 on reserve, 1 on hand, and 3 on backorder" width="659" height="151" data-path="img/inv-example-8.png" />

   * **Available**: 0
   * **On Reserve**: 4
   * **On Hand**: 1
   * **On Backorder**: 3
4. You mark three items as fulfilled:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-9.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=c593b90be57734f6b109a4651f0f81fc" alt="Example of a product with 0 quantity available, 1 on reserve, -2 on hand, and 3 on backorder" width="653" height="143" data-path="img/inv-example-9.png" />

   * **Available**: 0
   * **On Reserve**: 1
   * **On Hand**: -2
   * **On Backorder**: 3
5. You then receive five quantities of the product, and add this to your on-hand quantity:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-10.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=303459678b4ce5ea522348eab1acf5ca" alt="Example of a product with 2 quantity available, 1 on reserve, 3 on hand, and 0 on backorder" width="669" height="151" data-path="img/inv-example-10.png" />

   * **Available**: 2
   * **On Reserve**: 1
   * **On Hand**: 3
   * **On Backorder**: 0
6. You fulfill the remaining item:

   <img src="https://mintcdn.com/kibocommerce-59e68a4a/EkdospAR8vd50L77/img/inv-example-11.png?fit=max&auto=format&n=EkdospAR8vd50L77&q=85&s=368d44ff163135fd4f2e5a331147442d" alt="Example of a product with 2 quantity available, 0 on reserve, 2 on hand, and 0 on backorder" width="662" height="139" data-path="img/inv-example-11.png" />

   * **Available**: 2
   * **On Reserve**: 0
   * **On Hand**: 2
   * **On Backorder**: 0
