Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Report for Material Transactions in Oracle Fusion Cloud:

Data Model to Get Material Transactions for a given item in Oracle Fusion:

-------------------------------------------------------------------

select c.item_number,

a.transaction_date,

a.transaction_uom,

a.transaction_quantity,

b.transaction_type_name,

b.description "Transaction Type Desc"

from inv_material_txns a,

INV_TRANSACTION_TYPES_TL b,

EGP_SYSTEM_ITEMS c

where a.organization_id = <<Enter Organization Id>>

and a.transaction_type_id = 33

and a.transaction_type_id = b.transaction_type_id

and a.inventory_item_id = c.INVENTORY_ITEM_ID

and a.organization_id = c.ORGANIZATION_ID

and b.language = 'US'

and trunc(a.transaction_Date) between ('<<Enter From Date>>') and ('<<Enter To Date>>')

and c.item_number in (<<Item Numbers>>);

You might also like