BI Report, Business Intelligence Report,, Oracle Fusion, Oracle Fusion Finance

Receiving Transaction Query in Oracle Fusion

Receiving Transactions come in the picture if you have implemented P2P Cycle and placed the purchase order with the vendor. Once the vendor has the order, he will intimate you of the shipment plan before the actual delivery and these plans are stored in RCV_SHIPMENT_HEADERS & RCV_SHIPMENT_LINES Table. But actual receiving data is stored in RCV_TRANSACTIONS table. In this blog we will have a look at the query to fetch you receiving transaction details.

You can expect to find following details using this query:
1. Shipment Number
2. Shipment Line Number
3. Item Number
4. Item Description
5. Shipped Quantity
6. Received Quantity
7. UOM Code
8. PO Number
9. PO Line Number
10. Line Status
11. Comments
12. Receiving Date
13. Received By

Want to give back to the society? (Do you have something which you think can be used by folks working on Oracle world wide?) Then Click here, share your email id and a brief description of the topic. And keep your photo and the content ready.

By the way, Here ( India) or Here ( Other Geographies) are few UNCONVENTIONAL tricks which I have learnt to improve the performance of BI reports. Try them only when nothing else works.. kind of SOS...
https://www.amazon.in/gp/product/B093CC1CLD?ie=UTF8&tag=oraclebytes-21&camp=3638&linkCode=xm2&creativeASIN=B093CC1CLD

Receiving Transaction Query

SELECT rsh.shipment_num AS Shipment_Number,
rsl.line_num AS shipment_line_num,
esi.item_number,
rsl.item_description,
rsl.quantity_shipped,
rt.quantity AS quantity_received,
rsl.uom_code,
pha.segment1 AS po_number,
pla.line_num AS po_line_num,
rsl.shipment_line_status_code AS line_status,
rt.comments NOTE,
TO_CHAR(rt.transaction_date, 'MM/DD/YYYY') receipt_date
,ppn.display_name Received_By
, rsh.shipment_header_id
, rsl.shipment_line_id
FROM
rcv_shipment_headers rsh,
rcv_shipment_lines rsl
,per_person_names_f ppn ,
egp_system_items_b esi,
inv_org_parameters iop ,
po_headers_all pha,
po_lines_all pla ,
rcv_transactions rt
WHERE rsh.shipment_header_id = rsl.shipment_header_id (+)
AND esi.inventory_item_id(+) = rsl.item_id
AND esi.organization_id = iop.organization_id(+)
AND iop.organization_code(+) = 'IMO'
AND pla.po_line_id(+) = rsl.po_line_id
AND pha.po_header_id(+) = rsl.po_header_id
AND rt.SHIPMENT_LINE_ID(+) = rsl.SHIPMENT_LINE_ID
AND rt.transaction_type(+) = 'RECEIVE'
AND ppn.person_id(+) = rt.employee_id
AND ppn.name_type(+) = 'GLOBAL'
AND rsh.shipment_num = :ASBN_NUM 
Order by rsh.shipment_num , rsl.line_num  

As you can see that actual receiving details are coming from RCV_TRANSACTIONS table but at the same time if you query RCV_SHIPMENT_LINES table, you will see a lot of common details. Difference is that RCV_SHIPMENT_LINES contain the planning data initially which can become true in future but RCV_TRANSACTIONS table will always have the actual receiving data. Also there can be multiple receiving transaction for each row in RCV_SHIPMENT_LINES table. Check the query again once pls. As you see that comment column is coming from RCV_TRANSACTIONS table. Means comments can be different for 2 different receiving transactions, even though both belong to same shipment line.

Related Posts:

RCV_SHIPMENT_HEADERS: Columns & Indexes
RCV_SHIPMENT_LINES: Columns, Indexes & Few Tricks
RCV_TRANSACTIONS: Columns, Indexes & Tricks

Feedback:
Hope the article helped you. If it did, please rate the post. In case it didn’t, do leave a comment to let us know what did we miss.

Reference:
support.oracle.com

Receiving Transaction Query
Check out the Amazon Deals of the day based on your interests..

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 3

No votes so far! Be the first to rate this post.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

2 thoughts on “Receiving Transaction Query in Oracle Fusion”

Comments are closed.