What are the key columns and their corresponding data types in the Inventory Item table in Oracle Fusion?
Question
Share
Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The table containing inventory item details in Oracle Fusion is “EGP_SYSTEM_ITEMS_B“. It has one composite primary key (INVENTORY_ITEM_ID, ORGANIZATION_ID). and here you can find a sample query to get the most used information about items in Oracle Fusion:
Query Inventory Item in Oracle Fusion
In the above query, we have one parameter, “:P_INV_ORG_ID” to get the item information in a specific inventory organization.
You can refer to the Oracle doc to know all columns in this table.
Hope this help.