What is the use of parameter p_partial_reservation_flag in the API INV_RESERVATION_PUB.Create_Reser
Navigaton to documentation:
Integrated SOA Gateway --> Supply Chain Management --> Inventory --> Material Reservation --> Material Reservation Application Program Interface --> CREATE_RESERVATION
P_PARTIAL_RESERVATION_FLAG VARCHAR2 In FND_API.G_FALSE If not enough quantity is available, specifies whether to reserve the amount that is available. Possible values are FND_API_.G_FALSE and FND_API_.G_TRUE
What this does not say is - how this parameter helps in reserving quantities across lots. Let's say Qty is 1000 - Lot 1 has 900 and Lot 2 has 1000 and Lot FIFO is applicable.
So I would expect 900 from Lot 1 and 100 from Lot 2 to be reserved. Is my expectation valid when I set this parameter to FND_API_.G_TRUE ? On checking internally - it seems to work when it is set to 'Y'. Please clarify.