RCS_LOT_UOM_CONVERSIONS
This table stores the Lot UOM Conversions between the base unit of txn UOM to the base unit of primary UOM of the item.
Details
-
Schema: FUSION
-
Object owner: RCS
-
Object type: TABLE
-
Tablespace: FUSION_TS_TX_DATA
Primary Key
| Name | Columns |
|---|---|
|
RCS_LOT_UOM_CONVERSIONS_PK |
LOT_CONVERSION_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| LOT_CONVERSION_ID | NUMBER | 18 | Yes | Unique identifier of the lot specific Unit of Measure (UOM) conversion equation. | |
| INVENTORY_ITEM_ID | NUMBER | 18 | Yes | Identifies the inventory item. The item, organization and lot form the alternate key for what the conversion ratio is collected for, and this conversion may change over time. | |
| ORGANIZATION_ID | NUMBER | 18 | Yes | Identifies the organization. The item, organization and lot form the alternate key for what the conversion ratio is collected for, and this conversion may change over time. | |
| LOT_NUMBER | VARCHAR2 | 80 | Yes | Identifies the inventory lot. The item, organization and lot form the alternate key for what the conversion ratio is collected for, and this conversion may change over time. | |
| TXN_UOM_BASE_CODE | VARCHAR2 | 3 | Yes | Identifies the secondary characteristic for the conversion equation. This will default to the base unit of the secondary UOM class when being gathered from a user, but may represent the base unit of any class. | |
| TXN_UOM_CLASS_CODE | VARCHAR2 | 10 | Yes | Identifies the parent UOM class of the secondary characteristic for the conversion equation. | |
| PRIMARY_UOM_BASE_CODE | VARCHAR2 | 3 | Yes | Identifies the base unit of the parent class of the primary UOM for the selected item. | |
| PRIMARY_UOM_CLASS_CODE | VARCHAR2 | 10 | Yes | Identifies the parent UOM class of the primary UOM. | |
| CONVERSION_FACTOR | NUMBER | Yes | Conversion factor by which the transaction base UOM is equivalent to the base UOM of the item primary UOM. | ||
| START_DATETIME | TIMESTAMP | Yes | Starting date and time in UTC when the lot specific conversion of this item is effective. | ||
| END_DATETIME | TIMESTAMP | Ending date and time in UTC when the lot specific conversion of this item is effective. | |||
| REASON_ID | NUMBER | 18 | User specified optional reason for the conversion factor change. Foreign key to the INV_TRANSACTION_REASONS_B table. | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates 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_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
| 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. | |
| INVERSE_FLAG | VARCHAR2 | 1 | Contains one of the following values: true or false. If true, then the conversion rate between the secondary unit of the class and the base UOM of the class is modeled as an inverse quantity. In this case, the conversion factor represents "conversion factor" x secondary unit = 1 of the base unit. If false, the conversion factor represents 1 x secondary unit = conversion factor of base unit. The default value is false. | ||
| INVERSE_CONVERSION_FACTOR | NUMBER | Value entered by the user which is multiplicatively inversed to generate the conversion rate for the pair of units. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| inv_lot_conv_onhand_history | rcs_lot_uom_conversions | LOT_CONVERSION_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| RCS_LOT_UOM_CONVERSIONS_U1 | Unique | Default | LOT_CONVERSION_ID |
| RCS_LOT_UOM_CONVERSIONS_U2 | Unique | Default | INVENTORY_ITEM_ID, ORGANIZATION_ID, LOT_NUMBER, PRIMARY_UOM_BASE_CODE, TXN_UOM_BASE_CODE, START_DATETIME |