DBA Data[Home] [Help]

APPS.WMS_RULE_EXTN_PVT dependencies on INV_RESERVATION_PVT

Line 437: inv_reservation_pvt.print_rsv_rec(l_demand_rsvs_ordered (i));

433: /* Place reservation IDs into a table for easy access when creating new reservations */
434: IF l_demand_rsvs_ordered.count > 0 THEN
435: log_event(l_api_name, 'Suggest Reservations','# Reservations returned from Process Reservation : ' || l_demand_rsvs_ordered.count);
436: FOR i in l_demand_rsvs_ordered.First..l_demand_rsvs_ordered.Last LOOP
437: inv_reservation_pvt.print_rsv_rec(l_demand_rsvs_ordered (i));
438: l_rsv_index(l_demand_rsvs_ordered(i).reservation_id) := i;
439: END LOOP;
440: END IF;
441:

Line 656: inv_reservation_pvt.Transfer_Reservation (

652: -- Setting this to null will allow the reservation to be added to other reservations
653: -- with the same controls that may have been created during this process
654: l_new_reservation.reservation_id := NULL;
655:
656: inv_reservation_pvt.Transfer_Reservation (
657: p_api_version_number => 1.0
658: , p_init_msg_lst => fnd_api.g_true
659: , x_return_status => x_return_status
660: , x_msg_count => x_msg_count

Line 702: inv_reservation_pvt.update_reservation(

698: /* Update the current reservation with the quantities from the new reservation */
699: l_new_reservation.primary_reservation_quantity := l_last_reservation.primary_reservation_quantity + l_new_reservation.primary_reservation_quantity;
700: l_new_reservation.secondary_reservation_quantity := l_last_reservation.secondary_reservation_quantity + l_new_reservation.secondary_reservation_quantity;
701:
702: inv_reservation_pvt.update_reservation(
703: p_api_version_number => 1.0
704: , p_init_msg_lst => fnd_api.g_false
705: , x_return_status => x_return_status
706: , x_msg_count => x_msg_count