jiaxp 发表于 2015-9-23 14:12:01

Oracle EBS-SQL (BOM-11):检查无BOM的装配件.sql

  select   msi.segment1,
  msi.description, 、
  msi.item_type,   
  msi.inventory_item_status_code 状态
  from    inv.mtl_system_items_b   msi
  wheremsi.organization_id =X
  and msi.item_type               in ('FG','SA')   
  and msi.inventory_item_status_code <> 'Inactive'
  and not exists ( select null from bom.bom_structures_b    bsb,
  bom.bom_components_b    bcb               
  where bsb.organization_id   = msi.organization_id
  and bsb.assembly_item_id= msi.inventory_item_id   
  and bsb.bill_sequence_id= bcb.bill_sequence_id         
  and nvl(bcb.disable_date,sysdate+1)> sysdate         
  and rownum = 1)
页: [1]
查看完整版本: Oracle EBS-SQL (BOM-11):检查无BOM的装配件.sql