博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle EBS-SQL (INV-1):检查物料成本为0并且物料状态不是'NEW'的物料.sql
阅读量:6444 次
发布时间:2019-06-23

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

select --msi.inventory_item_id
        --,msi.organization_id
     msi.segment1                                        物料编码
    ,msi.Description                                    物料描述
    ,msi.INVENTORY_ITEM_STATUS_CODE           状态
    ,decode(cic.ITEM_COST,'',0,cic.ITEM_COST) 成本
    ,cic.COST_TYPE_ID                               成本类型
    ,msi.creation_date                               创建日期
from   inv.mtl_system_items_b msi,
          bom.cst_item_costs cic

where   msi.organization_id=X

   and msi.INVENTORY_ITEM_STATUS_CODE<>'New'
   and msi.INVENTORY_ITEM_ID=cic.INVENTORY_ITEM_ID
   and cic.organization_id=msi.organization_id
   and cic.COST_TYPE_ID in (1)
   and decode(cic.ITEM_COST,'',0,cic.ITEM_COST)=0
    and msi.INVENTORY_ITEM_STATUS_CODE not in ('Inactive','PHActive')
    order by msi.creation_date

转载于:https://www.cnblogs.com/st-sun/p/3778452.html

你可能感兴趣的文章
WebView与 JS 交互方式
查看>>
Java提高篇——静态代码块、构造代码块、构造函数以及Java类初始化顺序
查看>>
【CT】四、Turing Machines(2)
查看>>
【matlab】plot
查看>>
Kafka生产者APi
查看>>
有关计算机组成的分享~
查看>>
梳理回顾
查看>>
基于开源Dubbo分布式RPC服务框架的部署整合
查看>>
用C#实现智能设备上的NotifyIcon类
查看>>
HDU-2602-Bone Collector
查看>>
vs 2017 IIS EXPRESS 增加局域网访问
查看>>
POJ-2456 Aggressive cows---最大化最小值(也就是求最大值)
查看>>
解决WinSock中发送、接收多包问题
查看>>
CMDB资产管理系统开发:需求分析
查看>>
WebKit源代码里的RefPtr智能指针
查看>>
前端异常采集
查看>>
hadoop day 5
查看>>
mount什么意思
查看>>
c++-链表的回文结构
查看>>
XML模块
查看>>