DBA Data[Home] [Help]

APPS.MRP_PO_RESCHEDULE dependencies on PO_SHIPMENTS_REC_TYPE

Line 831: l_shipment_changes PO_SHIPMENTS_REC_TYPE;

827: l_promise_dates po_tbl_date;
828: l_uoms po_tbl_varchar30;
829:
830: l_po_line_changes po_lines_rec_type;
831: l_shipment_changes PO_SHIPMENTS_REC_TYPE;
832: l_distribution_changes PO_DISTRIBUTIONS_REC_TYPE;
833: l_changes PO_CHANGES_REC_TYPE;
834: l_po_operating_unit NUMBER;
835:

Line 875: l_shipment_changes := PO_SHIPMENTS_REC_TYPE.create_object (

871: l_distribution_changes := PO_DISTRIBUTIONS_REC_TYPE.create_object (
872: p_po_distribution_id => l_distribution_ids,
873: p_request_unit_of_measure => l_uoms,
874: p_quantity_ordered => l_qtys);
875: l_shipment_changes := PO_SHIPMENTS_REC_TYPE.create_object (
876: p_po_line_location_id => l_line_location_ids,
877: p_need_by_date => l_promise_dates);
878: ELSIF( l_line_location_ids.COUNT() > 0 ) THEN
879: debug_message('Creating shipment changes');

Line 880: l_shipment_changes := PO_SHIPMENTS_REC_TYPE.create_object (

876: p_po_line_location_id => l_line_location_ids,
877: p_need_by_date => l_promise_dates);
878: ELSIF( l_line_location_ids.COUNT() > 0 ) THEN
879: debug_message('Creating shipment changes');
880: l_shipment_changes := PO_SHIPMENTS_REC_TYPE.create_object (
881: p_po_line_location_id => l_line_location_ids,
882: p_quantity => l_qtys,
883: p_request_unit_of_measure => l_uoms,
884: p_need_by_date => l_promise_dates);