Script to extract Goods Received Date for Suppliers along with Invoice and PO Information
select (select hou.name from apps.hr_operating_units hou where organization_id = (select org_id from apps.ap_invoices_all apa where apa.vendor_id = ap.vendor_id order by creation_date fetch first 1 row only)) “Entity_OU”, TO_CHAR(ap.creation_date,’DD-MON-YYYY’) “Vendor_Creation_Date”, fu.user_name…
Read More