码迷,mamicode.com
首页 > 数据库 > 详细

Oracle EBS-SQL (BOM-5):检查有BOM但物料状态为NEW的物料.sql

时间:2014-06-10 13:22:08      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:des   code   com      type   sql   

select DISTINCT
     msi.segment1 成品编码
    ,msi.description 成品描述
    ,msi.item_type 物料类型
    ,msi.inventory_item_status_code 状态
    ,msi.build_in_wip_flag 允许制造
from
    INV.MTL_SYSTEM_ITEMS_B msi,
    apps.BOM_BILL_OF_MATERIALS bom,
    apps.BOM_INVENTORY_COMPONENTS bic
where
         msi.organization_id=X
   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.build_in_wip_flag =‘N‘   --可制造
   and msi.inventory_item_status_code=‘New‘
order by msi.segment1

Oracle EBS-SQL (BOM-5):检查有BOM但物料状态为NEW的物料.sql,布布扣,bubuko.com

Oracle EBS-SQL (BOM-5):检查有BOM但物料状态为NEW的物料.sql

标签:des   code   com      type   sql   

原文地址:http://www.cnblogs.com/st-sun/p/3778382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!