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

本文共 1952 字,大约阅读时间需要 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

转载地址:http://zvvcx.baihongyu.com/

你可能感兴趣的文章
GIT, GitHub
查看>>
通过file文件调用JDBC的Driver url 等参数
查看>>
if else 的简单应用
查看>>
java中字节数组byte[]和字符(字符串)之间的转换
查看>>
Excel
查看>>
Python列表list的用法
查看>>
Linux crontab任务调度详述(转)
查看>>
SQL SERVER触发器浅析
查看>>
如何快速学习新的知识
查看>>
安全的API接口解决方案
查看>>
call的理解
查看>>
WMI执行远程文件(RPC)
查看>>
由 Windows 向 Linux 迁移字体 和 Linux 等宽字体
查看>>
TINYINT,SMALLINT,MEDIUMINT,INT,INTEGER,BIGINT;text,longtext,mediumtext,ENUM,SET等字段类型区别
查看>>
HDU1892 See you~
查看>>
Bzoj1565 [NOI2009]植物大战僵尸
查看>>
单片机-keil使用-注释
查看>>
判断闰年的方法
查看>>
20135322实验五实验报告
查看>>
版本控制系统 git 之基础讲解
查看>>