BI Report, Business Intelligence Report,, indexes, Oracle Fusion, Table Structure

Inv_Org_Parameters: Inventory Table In Fusion

Inv_org_parameters table is one of the most important table if you have implemented inventory module in Oracle Fusion. Anywhere there has to be a linkage with inventory org, this table will come into the game. Example is querying egp_system_items_b table for a particular item_number.

In the image below you can see the place of inventory in this jigsaw puzzle. And the place explains why the table is so important in Oracle Fusion.

inv_org_parameters
Enterprise structure in Oracle Fusion

Point to remember is that Unique index is on Organization_code but with upper case i.e. write the query like this:
SELECT *
FROM inv_org_parameters
WHERE UPPER(Organization_code) = ‘ABC’

Since you are querying inv_org_parameters table, you might have to create the LoVs for few related entities. Check out this post Fusion LoV Queries: Legal Entity, Business Unit, Inventory, Sub Inventory

Am pretty sure that you know about the subinventories. Need the query to get the subinventory details? This post will help you.

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

So let’s discuss the table structure and constraints. Below are the important columns of the table. For complete list, click here.

COLUMN NAMEDATA TYPEDATA LENGTHNULLABLE
 ORGANIZATION_IDNUMBER22
 ORGANIZATION_CODEVARCHAR272
 MASTER_ORGANIZATION_IDNUMBER22
 BUSINESS_UNIT_IDNUMBER22
 LEGAL_ENTITY_IDNUMBER22
 INVENTORY_FLAGVARCHAR24
 ITEM_DEFINITION_ORG_IDNUMBER22
Table Structure

Indexes:

INDEX NAMEUNIQUENESSCOLUMN NAME
 INV_ORG_PARAMETERS_N1NONUNIQUEMASTER_ORGANIZATION_ID
 INV_ORG_PARAMETERS_U1UNIQUEORGANIZATION_ID
 INV_ORG_PARAMETERS_U2UNIQUESYS_NC00150$
Index Details

Constraints:

CONSTRAINT NAMECONSTRAINT TYPESEARCH CONDITION VC
 SYS_C0093718C“LAST_UPDATE_DATE” IS NOT NULL 
 SYS_C0093719C“ORGANIZATION_ID” IS NOT NULL 
 SYS_C0093720C“LAST_UPDATED_BY” IS NOT NULL 
 SYS_C0093721C“CREATION_DATE” IS NOT NULL 
 SYS_C0093722C“CREATED_BY” IS NOT NULL 
 SYS_C0093723C“INVENTORY_FLAG” IS NOT NULL 
 SYS_C0093724C“OBJECT_VERSION_NUMBER” IS NOT NULL 
Constraints

Related Posts:
Fusion LoV Queries: Legal Entity, Business Unit, Inventory, Sub Inventory

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


How useful was this post?

Click on a star to rate it!

Average rating 1 / 5. Vote count: 1

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?