博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle EBS-SQL (CST-4):检查组织间项目成本.sql
阅读量:5996 次
发布时间:2019-06-20

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

select

       i1.segment1                                                                           项目
      ,i1.description                                                                    项目描述
      ,i1.PRIMARY_UNIT_OF_MEASURE                                              单位
      ,decode(i1.item_type,'P','采购件','SA','子配件','FG','成品') 组织1项目类型
      ,decode(i2.item_type,'P','采购件','SA','子配件','FG','成品') 组织2项目类型
      ,c1.item_cost                                                                   组织1成本
      ,c2.item_cost                                                                   组织2成本
from
       bom.cst_item_costs                   c2
      ,bom.cst_item_costs                   c1
      ,inv.mtl_system_items_b             i2
      ,inv.mtl_system_items_b             i1
where
       --nvl(c1.item_cost,0) <> nvl(c2.item_cost,0)         and
         c1.inventory_item_id(+) = i1.inventory_item_id   and
         c1.cost_type_id(+) = 3                                       and    --冻结成本
         c1.organization_id(+) =  i1.organization_id           and
         c2.inventory_item_id(+)  =  i2.inventory_item_id  and
         c2.cost_type_id(+) = 1                                        and --冻结成本
         c2.organization_id(+) =  i2.organization_id           and  
         i2.organization_id = X2                                        and
         i2.inventory_item_id = i1.inventory_item_id          and
         i1.organization_id = X1                                       and
        (i1.inventory_item_status_code <> 'Inactive' and i2.inventory_item_status_code <> 'Inactive')
 
  

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

你可能感兴趣的文章
ssh密钥认证原理
查看>>
第十七课 vim工具的一般模式
查看>>
malloc和free的实现原理
查看>>
用MyEclipse JPA创建项目(二)
查看>>
javaweb学习总结(四)——Http协议
查看>>
javaweb学习总结(十八)——JSP属性范围
查看>>
UIWindow 单例使用
查看>>
Linux 操作命令 df
查看>>
JS判断坐标点是否在给定的多边形内
查看>>
21.这个看起来有点简单
查看>>
28BYJ-48步进电机道理
查看>>
C++重载运算符
查看>>
Spring的理解
查看>>
Does Harvard make you smarter
查看>>
一致性哈希算法
查看>>
列表页分页错位问题解决方案
查看>>
Go(3[数组])
查看>>
idea 添加 VUE 的语法支持和开发
查看>>
删除数组零元素
查看>>
Linux-Nginx负载均衡
查看>>