[Home] [Help]
[Dependency Information]
Object Name: | MTL_UOM_CONVERSIONS_VIEW |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A supplementary view used to simplify forms coding.
Warning: Oracle does not recommend you query or alter datausing this view. It may change dramatically in subsequent minor or major
releases.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
INVENTORY_ITEM_ID | NUMBER | Yes | Inventory item identifier | |
ORGANIZATION_ID | NUMBER | Yes | Organization identifier | |
PRIMARY_UNIT_OF_MEASURE | VARCHAR2 | (25) | Base unit of measure we are converting to | |
PRIMARY_UOM_CODE | VARCHAR2 | (3) | Base unit of measure code we are converting to | |
PRIMARY_UOM_CLASS | VARCHAR2 | (10) | Yes | Primary unit of measure class we are converting to |
UNIT_OF_MEASURE | VARCHAR2 | (25) | Yes | Unit of measure we are converting from |
UOM_CODE | VARCHAR2 | (3) | Yes | Unit of measure code we are converting from |
UOM_CLASS | VARCHAR2 | (10) | Yes | Unit of measure class we are converting from |
CONVERSION_RATE | NUMBER | Rate for converting from the unit of measure to the base unit |
Cut, paste (and edit) the following text to query this object:
SELECT INVENTORY_ITEM_ID
, ORGANIZATION_ID
, PRIMARY_UNIT_OF_MEASURE
, PRIMARY_UOM_CODE
, PRIMARY_UOM_CLASS
, UNIT_OF_MEASURE
, UOM_CODE
, UOM_CLASS
, CONVERSION_RATE
FROM APPS.MTL_UOM_CONVERSIONS_VIEW;
|
|
|