DBA Data[Home] [Help]

APPS.WMS_RULE_EXTN_PVT dependencies on INV_RESERVATION_PVT

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

477: /* Place reservation IDs into a table for easy access when creating new reservations */
478: IF l_demand_rsvs_ordered.count > 0 THEN
479: log_event(l_api_name, 'Suggest_Reservations','# Reservations returned from Process Reservation : ' || l_demand_rsvs_ordered.count);
480: FOR i in l_demand_rsvs_ordered.First..l_demand_rsvs_ordered.Last LOOP
481: inv_reservation_pvt.print_rsv_rec(l_demand_rsvs_ordered (i));
482: l_rsv_index(l_demand_rsvs_ordered(i).reservation_id) := i;
483:
484: -- bug 12314831 start
485: IF ( l_debug = 1 ) THEN

Line 814: inv_reservation_pvt.Transfer_Reservation (

810: -- Setting this to null will allow the reservation to be added to other reservations
811: -- with the same controls that may have been created during this process
812: l_new_reservation.reservation_id := NULL;
813:
814: inv_reservation_pvt.Transfer_Reservation (
815: p_api_version_number => 1.0
816: , p_init_msg_lst => fnd_api.g_false
817: , x_return_status => x_return_status
818: , x_msg_count => x_msg_count

Line 852: inv_reservation_pvt.update_reservation(

848: END IF;
849: --}
850: ELSE --{ Remaining high level reservation quantity < suggested quantity
851:
852: inv_reservation_pvt.update_reservation(
853: p_api_version_number => 1.0
854: , p_init_msg_lst => fnd_api.g_false
855: , x_return_status => x_return_status
856: , x_msg_count => x_msg_count

Line 888: inv_reservation_pvt.update_reservation(

884: /* Update the current reservation with the quantities from the new reservation */
885: l_new_reservation.primary_reservation_quantity := l_last_reservation.primary_reservation_quantity + l_new_reservation.primary_reservation_quantity;
886: l_new_reservation.secondary_reservation_quantity := l_last_reservation.secondary_reservation_quantity + l_new_reservation.secondary_reservation_quantity;
887:
888: inv_reservation_pvt.update_reservation(
889: p_api_version_number => 1.0
890: , p_init_msg_lst => fnd_api.g_false
891: , x_return_status => x_return_status
892: , x_msg_count => x_msg_count

Line 995: inv_reservation_pvt.delete_reservation (

991:
992: x_return_status := fnd_api.g_ret_sts_success;
993: l_rsv_rec.reservation_id := l_res_rec.res_id;
994:
995: inv_reservation_pvt.delete_reservation (
996: p_api_version_number => 1.0
997: , p_init_msg_lst => fnd_api.g_false
998: , x_return_status => l_return_status
999: , x_msg_count => l_msg_count