INV_ABC_COMPILES

INV_ABC_COMPILES stores information about each item within an ABC compile. Each row includes an item's sequence number relative to other items within the given compile, based on the compile criteria defined in INV_ABC_COMPILE_HEADERS. Each row also contains an item's compile quantity, compile value, cumulative quantity, and cumulative value. Oracle Inventory uses this information to provide an ordered sequence of items, to which the user can then assign an ABC Class.

Details

  • Schema: FUSION

  • Object owner: INV

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

INV_ABC_COMPILES_PK

INVENTORY_ITEM_ID, COMPILE_ID

Columns

Name Datatype Length Precision Not-null Comments
INVENTORY_ITEM_ID NUMBER 18 Yes This identifies the inventory item.
ITEM_UNIT_COST NUMBER This corresponds to the current item unit cost
COMPILE_ID NUMBER 18 Yes This identifies the ABC compile header.
OBJECT_VERSION_NUMBER NUMBER 9 Yes Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.
ORGANIZATION_ID NUMBER 18 Yes This identifies the inventory organization.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
SECONDARY_INVENTORY VARCHAR2 10 This is the name of the subinventory.
SEQUENCE_NUMBER NUMBER 18 Compile sequence number of this item
COMPILE_QUANTITY NUMBER This is the ABC compile quantity of this item.
COMPILE_VALUE NUMBER This is the ABC compile value of this item.
CUMULATIVE_QUANTITY NUMBER Cumulative quantity of all items with sequence-numbers less than or equal to this one
CUMULATIVE_VALUE NUMBER Cumulative value of all items with sequence-numbers less than or equal to this one
REQUEST_ID NUMBER 18 Enterprise Service Scheduler: indicates the request ID of the job that created or last updated the row.
JOB_DEFINITION_NAME VARCHAR2 100 Enterprise Service Scheduler: indicates the name of the job that created or last updated the row.
JOB_DEFINITION_PACKAGE VARCHAR2 900 Enterprise Service Scheduler: indicates the package name of the job that created or last updated the row.

Foreign Keys

Table Foreign Table Foreign Key Column
INV_ABC_COMPILES inv_abc_compile_headers COMPILE_ID
INV_ABC_COMPILES egp_item_org_associations INVENTORY_ITEM_ID, ORGANIZATION_ID
INV_ABC_COMPILES inv_secondary_inventories SECONDARY_INVENTORY, ORGANIZATION_ID

Indexes

Index Uniqueness Tablespace Columns
INV_ABC_COMPILES_N1 Non Unique FUSION_TS_TX_IDX COMPILE_ID, SEQUENCE_NUMBER
INV_ABC_COMPILES_U1 Unique FUSION_TS_TX_IDX INVENTORY_ITEM_ID, COMPILE_ID