DBA Data[Home] [Help]

VIEW: APPS.EDW_ITEMS_ITEM_REV_FKV

Source

View Text - Preformatted

SELECT msi.inventory_item_id, msi.organization_id, mtr.revision, mtr.revision||'-'|| msi.concatenated_segments||'-'|| mp.organization_code from mtl_system_items_kfv msi, mtl_parameters mp, mtl_item_revisions mtr WHERE msi.inventory_item_id = mtr.inventory_item_id and msi.organization_id = mtr.organization_id and mp.organization_id = mtr.organization_id
View Text - HTML Formatted

SELECT MSI.INVENTORY_ITEM_ID
, MSI.ORGANIZATION_ID
, MTR.REVISION
, MTR.REVISION||'-'|| MSI.CONCATENATED_SEGMENTS||'-'|| MP.ORGANIZATION_CODE
FROM MTL_SYSTEM_ITEMS_KFV MSI
, MTL_PARAMETERS MP
, MTL_ITEM_REVISIONS MTR
WHERE MSI.INVENTORY_ITEM_ID = MTR.INVENTORY_ITEM_ID
AND MSI.ORGANIZATION_ID = MTR.ORGANIZATION_ID
AND MP.ORGANIZATION_ID = MTR.ORGANIZATION_ID