DBA Data[Home] [Help]

APPS.PO_DOCUMENT_CONTROL_PVT dependencies on PO_REQ_DISTRIBUTIONS_ALL

Line 4696: , po_req_distributions_all prd

4692: CURSOR shipment_labor_expense_req_csr ( p_line_location_id NUMBER ) IS
4693: SELECT 'Backing Temp Labor/Expense Req'
4694: FROM po_distributions_all pod
4695: , po_requisition_lines_all prl
4696: , po_req_distributions_all prd
4697: WHERE pod.line_location_id = p_line_location_id -- For each PO Distribution
4698: AND pod.req_distribution_id = prd.distribution_id -- join to backing Req Distribution
4699: AND prd.requisition_line_id = prl.requisition_line_id -- and then up to the Req Line.
4700: AND ( ( prl.labor_req_line_id IS NOT NULL ) -- That Req Line must be an Expense line

Line 4713: , po_req_distributions_all prd

4709: CURSOR line_labor_expense_req_csr ( p_po_line_id NUMBER ) IS
4710: SELECT 'Backing Temp Labor/Expense Req'
4711: FROM po_distributions_all pod
4712: , po_requisition_lines_all prl
4713: , po_req_distributions_all prd
4714: WHERE pod.po_line_id = p_po_line_id -- For each PO Distribution
4715: AND pod.req_distribution_id = prd.distribution_id -- join to backing Req Distribution
4716: AND prd.requisition_line_id = prl.requisition_line_id -- and then up to the Req Line.
4717: AND ( ( prl.labor_req_line_id IS NOT NULL ) -- That Req Line must be an Expense line