Magento – error when submit shipment – Not all of your products are available in the requested quantity

magento2.3shipmentstock-availability

Customer created order, and all went well.
Now I try to ship the product and get this error:

Not all of your products are available in the requested quantity.

I checked and all product are on plenty on stock.
'salable quantity' is also stock minus sold after the order.

Best Answer

Just checked the product Qty you have in source item table

    mysql-> select * from inventory_source_item where sku = %you sku%;

Just check the product Qty you have in legacy Catalog Inventory Stock Item table

  mysql-> select * from cataloginventory_stock_item where product_id = %your product id% \

If the Qty item is zero in the inventory_source_item update the Quantity item . Then issue will be solved.

Related Topic