首页 > 代码库 > Oracle EBS-SQL (BOM-10):检查有BOM无计划员的数据.sql
Oracle EBS-SQL (BOM-10):检查有BOM无计划员的数据.sql
select DISTINCT
msi.segment1 编码
,msi.description 描述
,msi.item_type 物料类型
,msi.inventory_item_status_code 状态
,msi.planner_code 计划员
from
INV.MTL_SYSTEM_ITEMS_B msi
,apps.BOM_BILL_OF_MATERIALS bom
,apps.BOM_INVENTORY_COMPONENTS bic
where
msi.organization_id=X
--and msi.inventory_item_status_code = ‘Active‘
and bom.ORGANIZATION_ID=X
and bom.assembly_item_id=msi.inventory_item_id
and bom.bill_sequence_id=bic.bill_sequence_id
and bic.DISABLE_DATE is null
and msi.item_type in (‘FG‘,‘SA‘)
and msi.planner_code is null
order by msi.segment1
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。