The below gives the details of a Purchase Order (PO) details along with the Requisition details in Oracle Apps R12.1.3.
SELECT poh.segment1 po_number
,mp.organization_code org_code
,haou.name org_name
,porh.segment1 po_requisition_num
,poh.creation_date po_creation_date
FROM po_headers_all poh
,po_lines_all pol
,po_line_locations_all pll
,po_distributions_all pda
,po_req_distributions_all pord
,po_requisition_lines_all porl
,po_requisition_headers_all porh
,mtl_parameters mp
,hr_all_organization_units haou
WHERE 1=1
AND poh.po_header_id = pol.po_header_id
AND pll.po_header_id = pol.po_header_id
AND pll.po_line_id = pol.po_line_id
AND pda.po_header_id = pol.po_header_id
AND pda.po_line_id = pol.po_line_id
AND pda.line_location_id = pll.line_location_id
AND pda.req_distribution_id = pord.distribution_id(+)
AND pda.org_id = pord.org_id(+)
AND pord.requisition_line_id = porl.requisition_line_id(+)
AND porl.requisition_header_id = porh.requisition_header_id(+)
AND mp.organization_id = poh.org_id
AND haou.organization_id = poh.org_id
AND poh.segment1 =
'31200000'
AND poh.org_id =
0
-- depending on which operating unit
;