DBA Data[Home] [Help]

APPS.INL_SIMULATION_PVT dependencies on PO_HEADERS_ALL

Line 1644: FROM po_headers_all ph

1640:
1641: IF l_simulation_rec.parent_table_name = 'PO_HEADERS' THEN
1642: SELECT segment1
1643: INTO l_src_number
1644: FROM po_headers_all ph
1645: WHERE ph.po_header_id = l_simulation_rec.parent_table_id;
1646: ELSIF l_simulation_rec.parent_table_name = 'PO_RELEASES' THEN -- Bug 14280113
1647: SELECT segment1
1648: INTO l_src_number

Line 1649: FROM po_headers_all ph,

1645: WHERE ph.po_header_id = l_simulation_rec.parent_table_id;
1646: ELSIF l_simulation_rec.parent_table_name = 'PO_RELEASES' THEN -- Bug 14280113
1647: SELECT segment1
1648: INTO l_src_number
1649: FROM po_headers_all ph,
1650: po_releases_all pr
1651: WHERE ph.po_header_id = pr.po_header_id
1652: AND pr.po_release_id = l_simulation_rec.parent_table_id;
1653: END IF;