A warehouse manager queries the on-hand inventory for item L0101 and receives the JSON output above: ```json { "ItemId": "L0101", "OnHandQuantity": 700, "PhysicallyReserved": 400, "AvailablePhysical": 300 } ``` Currently, how many units of item L0101 are available to be picked for new orders?
300 is available after subtracting reserved from total on hand.
Why this answer
The on-hand inventory for item L0101 is 700 units, but 400 units are physically reserved for existing orders. The available-to-pick quantity is the on-hand total minus physically reserved inventory, which equals 300 units. This is confirmed by the 'AvailablePhysical' field in the JSON output, which directly represents the quantity available to be picked for new orders in Dynamics 365 Supply Chain Management.
Exam trap
The trap here is that candidates often confuse the total on-hand quantity (700) or the simple subtraction (500) with the actual available-to-pick quantity, overlooking the 'AvailablePhysical' field in the JSON output which is the definitive value for picking in Dynamics 365 Supply Chain Management.
How to eliminate wrong answers
Option A is wrong because 500 represents the on-hand total minus physically reserved inventory, but the 'AvailablePhysical' field in the JSON output explicitly shows 300, which is the actual available-to-pick quantity. Option C is wrong because 200 is the physically reserved quantity, not the available-to-pick quantity. Option D is wrong because 700 is the total on-hand inventory, which includes reserved stock and is not available for new orders.