博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Items not exists bom list
阅读量:5040 次
发布时间:2019-06-12

本文共 2022 字,大约阅读时间需要 6 分钟。

-- 没有加入BOM的物料

select

    msi.segment1 item_no,
    msi.description,
    msi.primary_uom_code uom,
    --msi.item_type,
    (select meaning from FND_LOOKUP_VALUES_VL where 1=1 AND lookup_type = 'ITEM_TYPE' and lookup_code=msi.item_type) item_type,
    nvl((SELECT SUM (moq.primary_transaction_quantity) on_hand
        FROM mtl_onhand_quantities_detail moq
        WHERE 1 = 1 AND moq.inventory_item_id = msi.inventory_item_id AND moq.organization_id = msi.organization_id), 0) on_hand_qty
from mtl_system_items_b msi
where 1=1
and msi.eng_item_flag = 'N'
and msi.organization_id = 190
--and msi.inventory_item_id= 15395
--and msi.segment1 = '9SL4000030AFDIF0'
and not exists(
    select  'x'
    --       bom.assembly_item_id,
    --       bic.component_item_id,
    --       bom.organization_id
      from bom_bill_of_materials bom,
           bom_inventory_components bic
     where bom.BILL_SEQUENCE_ID = bic.bill_sequence_id
       and bom.organization_id = msi.organization_id--190
       --and bom.assembly_item_id = 15395
       --and bic.component_item_id = 11898
       and ( bom.assembly_item_id = msi.inventory_item_id or bic.component_item_id = msi.inventory_item_id)
   )

---------------------------------------------------------------------------------------------------------------------------------------------------------

-- bom list

select level,
lst.assembly_item_id,
lst.component_item_id,
lst.organization_id,
lst.farther,
lst.component
  from (select bom.assembly_item_id,
               bic.component_item_id,
               bom.organization_id
               ,(select msi.segment1 from inv.mtl_system_items_b msi where msi.organization_id=123 and  msi.inventory_item_id = bom.assembly_item_id) farther,
               (select msi.segment1 from inv.mtl_system_items_b msi where msi.organization_id=123 and msi.inventory_item_id = bic.component_item_id) component
          from bom_bill_of_materials bom,
               bom_inventory_components bic
         where bom.BILL_SEQUENCE_ID = bic.bill_sequence_id
           and bom.organization_id = 123) lst
start with (lst.assembly_item_id = 15395)--15395)
connect by lst.assembly_item_id = prior lst.component_item_id

转载于:https://www.cnblogs.com/quanweiru/archive/2012/10/22/2733504.html

你可能感兴趣的文章
Easy Mock
查看>>
看看 Delphi XE2 为 VCL 提供的 14 种样式
查看>>
Python内置函数(29)——help
查看>>
机器学习系列-tensorflow-01-急切执行API
查看>>
SqlServer 遍历修改字段长度
查看>>
Eclipse快捷键:同时显示两个一模一样的代码窗口
查看>>
《架构之美》阅读笔记05
查看>>
《大道至简》读后感——论沟通的重要性
查看>>
JDBC基础篇(MYSQL)——使用statement执行DQL语句(select)
查看>>
关于React中props与state的一知半解
查看>>
java中Hashtable和HashMap的区别(转)
查看>>
关闭数据库
查看>>
webStrom智能提示忽略首字母大小写问题
查看>>
层叠加的五条叠加法则(一)
查看>>
设计模式六大原则(5):迪米特法则
查看>>
对Feature的操作插入添加删除
查看>>
javascript String
查看>>
ecshop 系统信息在哪个页面
查看>>
【转】码云source tree 提交超过100m 为什么大文件推不上去
查看>>
Oracle数据库的增、删、改、查
查看>>