博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle EBS-SQL (CST-2):检查有BOM但成本不基于累积的数据.sql
阅读量:5930 次
发布时间:2019-06-19

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

select c.segment1                                                                          物料编码,

         c.description                                                                         物料描述,
         f.item_cost                                                                                 成本,
         DECODE(f.based_on_rollup_flag,'1','基于累积','2','不基于累积')     成本类型
  from

    --bom.cst_item_cost_details            b,

       inv.mtl_system_items_b               c,
       bom.bom_bill_of_materials           d,
    --bom.bom_inventory_components   e,
       bom.cst_item_costs                      f
 where c.organization_id=94
    and d.organization_id=c.organization_id
    and f.organization_id=c.organization_id
 --and b.organization_id=c.organization_id
    and f.based_on_rollup_flag='2'
    and f.cost_type_id='1000'
    and c.inventory_item_id=f.inventory_item_id
    and c.inventory_item_status_code='Active'
    and c.item_type<>'P'
    and d.assembly_item_id=c.inventory_item_id
 --and d.bill_sequence_id=e.bill_sequence_id
   and d.bill_sequence_id in (select t.bill_sequence_id
                                           from bom.bom_inventory_components t)

 --and e.component_item_id=c.

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

你可能感兴趣的文章
Mybatis第一篇【介绍、快速入门、工作流程】
查看>>
mybatis底层原理学习(一):SqlSessionFactory和SqlSession的创建过程
查看>>
面向业务开发者的 k8s 基本命令
查看>>
恶意软件PE文件重建指南
查看>>
Discuz! X系列远程代码执行漏洞分析
查看>>
JS敏感信息泄露:不容忽视的WEB漏洞
查看>>
Apple OS X系统中存在可以提升root权限的API后门
查看>>
仿:Android - 微信 - 朋友圈 - 小视频播放,多4句废话算我输
查看>>
算法知识梳理(13) - 二叉树算法第三部分
查看>>
W3C 发布 EME 标准,EFF 退出 W3C
查看>>
#每日一记# 3分钟从 es6+ 编译成 es5 的代码里学习知识
查看>>
Python爬虫实战(4)-带你用Python爬取妹子图片
查看>>
最长回文子串
查看>>
JavaEE进阶知识学习-----SpringCloud(三)Eureka服务注册与发现
查看>>
Android Things 专题 2 硬件介绍
查看>>
你也许不知道,CSS 也有编程能力?
查看>>
认识阿里云的产品逻辑:基础设施必须必业务跑得快
查看>>
面试中的复杂度分析
查看>>
前端面试6:面向对象
查看>>
数据结构和算法
查看>>