zoukankan      html  css  js  c++  java
  • Oracle EBS-SQL (BOM-18):检查BOM与工艺路线对照.sql

    /*有工艺路线,无BOM清单*/

    select msi.segment1,

             msi.description

    from apps.BOM_OPERATIONAL_ROUTINGS bor,

            apps.mtl_system_items_b msi

    where msi.organization_id=Y

       and   bor.organization_id=msi.organization_id

       and   bor.assembly_item_id=msi.inventory_item_id

       and   not exists (select 'X'

                                 from   apps.BOM_BILL_OF_MATERIALS bbom

                               where   bbom.assembly_item_id=bor.assembly_item_id

                                  and    bbom.organization_id=bor.organization_id)

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

    /*无工艺路线,有BOM清单*/

    select msi.segment1,

             msi.description

     from apps.BOM_BILL_OF_MATERIALS bbom,

             apps.mtl_system_items_b msi

    where msi.organization_id=Y

       and   bbom.organization_id=msi.organization_id

       and   bbom.assembly_item_id=msi.inventory_item_id

       and   not exists (select 'X'

                                 from   apps.BOM_OPERATIONAL_ROUTINGS bor

                               where   bor.assembly_item_id=bbom.assembly_item_id

                                  and    bor.organization_id=bbom.organization_id)

  • 相关阅读:
    005本周总结报告
    《大道至简》读后感
    004本周总结报告
    003本周总结报告
    002本周总结报告
    001本周总结报告
    【财经】股市是不是零和博弈?
    【Spring】使用Spring的AbstractRoutingDataSource实现多数据源切换
    【Java每日一题】20170217
    【Java每日一题】20170216
  • 原文地址:https://www.cnblogs.com/st-sun/p/3781868.html
Copyright © 2011-2022 走看看