zoukankan      html  css  js  c++  java
  • Oracle EBS-SQL (BOM-13):检查未定义库存分的物料类.sql

    select distinct msi.segment1            编码 ,  

             msi.description                      描述  ,

             msi.primary_unit_of_measure 单位 ,

             msi.inventory_item_status_code 状态 ,

             flv.MEANING                    物料类型 ,

             catb1.segment1               库存大类 ,

             catb1.segment2               库存小类 ,

             msi.creation_date            创建时间

    from inv.mtl_system_items_b msi,

            applsys.fnd_lookup_values flv,

            inv.mtl_categories_b catb1,

            inv.mtl_item_categories cat 1,

            apps.mfg_lookups  lkp

    where msi.organization_id=X

       and flv.lookup_type='ITEM_TYPE' and lkp.LOOKUP_TYPE(+) =  'WIP_SUPPLY'

       and lkp.LOOKUP_CODE(+) = msi.wip_supply_type

       and flv.language='ZHS'

       and msi.item_type=flv.lookup_code

       and catb1.category_id(+) =  cat1.category_id 

       and msi.inventory_item_id=cat1.inventory_item_id(+)

       and cat1.category_set_id(+)=1 --and msi.item_type in ('P','SA','FG')

       and msi.inventory_item_status_code not like 'In%'

    --and msi.description not like '%工具备件%'

       and decode(catb1.segment1,'','0',catb1.segment1) ='0'

    order by msi.segment1

  • 相关阅读:
    Qual IPE中的Crop计算
    TinyCC安装
    C编译器(TCC)
    Macros之PRId64
    shell脚本学习 (10) 从结构化文本提取数据
    shell脚本学习 (9) 提取开头或结尾的几行
    shell脚本学习 (8) fmt 格式化段落
    接触python的第2天:了解变量和打印
    接触python的第1天:测试hello world
    shell脚本学习(7)sort
  • 原文地址:https://www.cnblogs.com/st-sun/p/3778442.html
Copyright © 2011-2022 走看看