top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the link between sales order and purchase order in Oracle R12

+1 vote
1,839 views

I need a query to get the sales order related PO number in R12

posted Sep 16, 2014 by Vidhya Sagar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

this helps you:

SELECT *
FROM oe_drop_ship_sources
WHERE header_id = (SELECT header_id
FROM oe_order_headers_all
WHERE order_number = '1005')

answer Sep 16, 2014 by Arun Gowda
I can see only Po HeaderID and PO lineID but not the PO NUmber
...