DBA Data[Home] [Help]

APPS.WMS_XDOCK_PEGGING_PUB dependencies on PO_LINE_LOCATIONS_ALL

Line 1772: FROM po_headers_all poh, po_lines_all pol, po_line_locations_all poll,

1768: NULL AS secondary_uom_code,
1769: MIN(pod.project_id) AS project_id,
1770: MIN(pod.task_id) AS task_id,
1771: NULL AS lpn_id
1772: FROM po_headers_all poh, po_lines_all pol, po_line_locations_all poll,
1773: po_distributions_all pod, po_line_types plt, mtl_units_of_measure muom
1774: WHERE poh.type_lookup_code IN ('STANDARD','PLANNED','BLANKET','CONTRACT')
1775: AND NVL(poh.cancel_flag, 'N') IN ('N', 'I')
1776: AND NVL(poh.closed_code, 'OPEN') NOT IN ('FINALLY CLOSED','CLOSED FOR RECEIVING','CLOSED')

Line 1829: po_line_locations_all poll, po_distributions_all pod, mtl_units_of_measure muom

1825: MIN(pod.project_id) AS project_id,
1826: MIN(pod.task_id) AS task_id,
1827: NULL AS lpn_id
1828: FROM rcv_shipment_headers rsh, rcv_shipment_lines rsl, po_lines_all pol, po_line_types plt,
1829: po_line_locations_all poll, po_distributions_all pod, mtl_units_of_measure muom
1830: WHERE rsh.shipment_num IS NOT NULL
1831: AND rsh.receipt_source_code = 'VENDOR'
1832: AND rsh.asn_type in ('ASN','ASBN')
1833: AND rsh.shipment_header_id = rsl.shipment_header_id

Line 2212: FROM po_line_locations_all poll, mtl_units_of_measure muom,

2208:
2209: -- Cursor to lock the PO supply line record.
2210: CURSOR lock_po_record(p_uom_code VARCHAR2, p_project_id NUMBER, p_task_id NUMBER) IS
2211: SELECT muom.uom_code, pod.project_id, pod.task_id
2212: FROM po_line_locations_all poll, mtl_units_of_measure muom,
2213: (SELECT po_header_id, po_line_id, line_location_id,
2214: MIN(project_id) AS project_id, MIN(task_id) AS task_id
2215: FROM po_distributions_all
2216: WHERE po_header_id = l_supply_header_id

Line 2237: FROM rcv_shipment_lines rsl, po_line_locations_all poll, mtl_units_of_measure muom,

2233:
2234: -- Cursor to lock the ASN supply line record.
2235: CURSOR lock_asn_record(p_uom_code VARCHAR2, p_project_id NUMBER, p_task_id NUMBER) IS
2236: SELECT muom.uom_code, pod.project_id, pod.task_id
2237: FROM rcv_shipment_lines rsl, po_line_locations_all poll, mtl_units_of_measure muom,
2238: (SELECT po_header_id, po_line_id, line_location_id,
2239: MIN(project_id) AS project_id, MIN(task_id) AS task_id
2240: FROM po_distributions_all
2241: WHERE po_header_id = l_supply_header_id

Line 9961: FROM po_line_locations_all poll, wsh_delivery_details wdd,

9957: NVL(NVL(wdd.carrier_id, wcs_wdd.carrier_id),
9958: wc_poll.carrier_id))) AS carrier_id,
9959: NVL(wts.planned_arrival_date,
9960: NVL(poll.promised_date, poll.need_by_date)) AS expected_receipt_date
9961: FROM po_line_locations_all poll, wsh_delivery_details wdd,
9962: wsh_delivery_assignments_v wda, wsh_new_deliveries wnd, wsh_delivery_legs wdl,
9963: wsh_trip_stops wts, wsh_trips wt, wsh_carrier_services wcs_wnd,
9964: wsh_carrier_services wcs_wdd, wsh_carriers wc_poll
9965: WHERE poll.po_header_id = p_source_header_id

Line 10009: FROM po_line_locations_all poll, wsh_delivery_details wdd,

10005: wc_poll.carrier_id)))) AS carrier_id,
10006: NVL(wts.planned_arrival_date,
10007: NVL(NVL(rsh.expected_receipt_date, rsh.shipped_date),
10008: NVL(poll.promised_date, poll.need_by_date))) AS expected_receipt_date
10009: FROM po_line_locations_all poll, wsh_delivery_details wdd,
10010: rcv_shipment_headers rsh, rcv_shipment_lines rsl,
10011: wsh_delivery_assignments_v wda, wsh_new_deliveries wnd, wsh_delivery_legs wdl,
10012: wsh_trip_stops wts, wsh_trips wt, wsh_carrier_services wcs_wnd,
10013: wsh_carrier_services wcs_wdd, wsh_carriers wc_poll, wsh_carriers wc_rsh