DBA Data[Home] [Help]

APPS.INV_DETAIL_UTIL_PVT dependencies on MTL_RESERVATIONS

Line 3057: UPDATE mtl_reservations

3053: BEGIN
3054: FOR l_index IN 1..g_output_process_tbl_size LOOP
3055: l_reservation_id := g_output_process_tbl(l_index).reservation_id ;
3056: IF l_reservation_id IS NOT NULL THEN
3057: UPDATE mtl_reservations
3058: SET detailed_quantity = detailed_quantity + g_output_process_tbl(l_index).primary_quantity
3059: , secondary_detailed_quantity = secondary_detailed_quantity + g_output_process_tbl(l_index).secondary_quantity
3060: WHERE reservation_id = l_reservation_id;
3061: END IF;