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

Onhand Quantity Query in Oracle Fusion

Onhand Quantity, a phrase you’ll hear umpteen times working in Oracle Fusion if you have implemented “inventory” module. So what exactly is Onhand Quantity. This quantity is nothing but the quantity you have to allocate for any purpose say sales order. Here is the small query you can use to find out the onhand qty of an item for a particular inventory org.

SELECT SUM(NVL(dtls.transaction_quantity, 0)) Onhand_qty
FROM inv_onhand_quantities_detail dtls,
egp_system_items_b esi,
inv_org_parameters iop
WHERE dtls.inventory_item_id = esi.inventory_item_id
AND dtls.organization_id = iop.organization_id
AND esi.item_number = :item_number
AND upper(iop.organization_code) = :Org

as you can see, this query takes item_number and Org input parameters. Alter it to suit your needs.

Related Posts

Reserved Quantity
Item Table in Oracle Fusion – Inventory – EGP_SYSTEM_ITEMS_B
How to Query an Item in Oracle Fusion Finance

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

From: Mohit Saxena
Author of “Oracle Fusion: Unconventional Ways to Enhance the Performance of BI Reports

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 2

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?

1 thought on “Onhand Quantity Query in Oracle Fusion”

Comments are closed.