sql bom上的Oracle费用项的SQL代码。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql bom上的Oracle费用项的SQL代码。相关的知识,希望对你有一定的参考价值。
select
msi.CONCATENATED_SEGMENTS item
, msi.Primary_unit_of_measure item_UOM
, msi.description item_description
, bic.item_num item_sequence_num
, bic.OPERATION_SEQ_NUM operation_sequence_num
, msic.CONCATENATED_SEGMENTS component_item
, decode(msic.item_type,'P', 'Purchased','AI','ATO Item','EXP','Expense', msi.item_type) component_item_type
, msic.Primary_unit_of_measure component_UOM
, msic.description component_item_description
, bic.COMPONENT_QUANTITY
, bic.SUPPLY_SUBINVENTORY
, bic.COMPONENT_REMARKS
from apps.mtl_system_items_vl msi
, apps.mtl_system_items_vl msic
, apps.bom_bill_of_materials bbom
, apps.bom_inventory_components bic
where bbom.organization_id = 659
and msi.inventory_item_id = bbom.assembly_item_id
and msi.organization_id = bbom.organization_id
and nvl(bbom.common_bill_sequence_id,bbom.bill_sequence_id) = bic.bill_sequence_id
and msic.organization_id = nvl(bbom.common_organization_id, bbom.organization_id)
and msic.inventory_item_id = bic.component_item_id
and bbom.ALTERNATE_BOM_DESIGNATOR is null
and msic.item_type = 'EXP'
order by 1,2,3
以上是关于sql bom上的Oracle费用项的SQL代码。的主要内容,如果未能解决你的问题,请参考以下文章
Oracle SQL:ORA-01427:单行子查询返回多于一行
在Oracle Apex中显示按钮时,服务器端条件取决于页面项的值?
Oracle 11g 代码上的 PL/SQL 是在执行存储过程时
Oracle 动态SQL语句
我需要使用啥 SQL 来列出 Oracle 数据库上的所有存储过程?
pl/sql 块中的子选择上的 Oracle 8i 动态 SQL 错误