Oracle EBS-SQL (WIP-15):检查车间任务物料未发数量与现有量对照.sql
select
we.wip_entity_name 任务号
,mfg_lookups_wjs.meaning 作业状态
,wdj.class_code 任务类型
,msi1.segment1 装配编码
,msi1.description 装配描述
,wdj.scheduled_start_date 计划完成日期
,wdj.scheduled_completion_date 计划完成日期
,nvl(wdj.start_quantity
,0) 计划数量
,nvl(wdj.quantity_completed
,0) 完成数量
,msi2.segment1 物料编码
,msi2.description 物料描述
,nvl(wro.required_quantity
,0) 需求数量
,nvl(wro.quantity_issued
,0) 发料数量
,nvl(wro.required_quantity
,0) - nvl(wro.quantity_issued
,0) 未发数量
,wro.supply_subinventory 供应子库
,ml.meaning 供应类型
,onhand.subinventory_code 子库
,onhand.TRANSACTION_QUANTITY 子库数量
,(select nvl(sum(moq.TRANSACTION_QUANTITY),0)
from apps.mtl_onhand_quantities moq
where moq.organization_id=851
and moq.inventory_item_id=msi2.inventory_item_id) 现有量
from wip.wip_discrete_jobs wdj
,wip.wip_requirement_operations wro
,inv.mtl_system_items_b msi1
,inv.mtl_system_items_b msi2
,wip.wip_entities we
,bom.cst_item_costs cic
,applsys.fnd_lookup_values ml
,applsys.fnd_lookup_values mfg_lookups_wjs
,(select moq.inventory_item_id,
moq.subinventory_code,
sum(moq.TRANSACTION_QUANTITY) TRANSACTION_QUANTITY
from apps.mtl_onhand_quantities moq
where moq.organization_id=x
group by moq.inventory_item_id,
moq.subinventory_code) onhand
where we.organization_id = x
and wdj.wip_entity_id = we.wip_entity_id
and wdj.organization_id = we.organization_id
and msi1.inventory_item_id = we.primary_item_id
and msi1.organization_id = we.organization_id
and wro.wip_entity_id = wdj.wip_entity_id
and wro.organization_id = wdj.organization_id
and msi2.inventory_item_id= wro.inventory_item_id
and msi2.organization_id = wro.organization_id
and onhand.inventory_item_id(+)=msi2.inventory_item_id
and ml.lookup_type = 'WIP_SUPPLY'
and ml.lookup_code = wro.wip_supply_type
and (mfg_lookups_wjs.lookup_type = 'WIP_JOB_STATUS')
and (wdj.status_type = mfg_lookups_wjs.lookup_code)
and cic.inventory_item_id = msi2.inventory_item_id
and cic.organization_id = msi2.organization_id
and cic.cost_type_id = 1
and mfg_lookups_wjs.meaning <> '已关闭'
and ml.meaning not like '虚拟件'
and trunc(wdj.scheduled_completion_date) between
to_date('20**/01/01'
,'yyyy-mm-dd') and
to_date('20**/01/31'
,'yyyy-mm-dd')
and mfg_lookups_wjs.language = 'ZHS'
and ml.language = 'ZHS'
and nvl(wro.required_quantity
,0) - nvl(wro.quantity_issued
,0) > 0
and nvl(wdj.start_quantity
,0) = nvl(wdj.quantity_completed
,0)
order by 1,10
Oracle EBS-SQL (WIP-15):检查车间任务物料未发数量与现有量对照.sql的更多相关文章
- Oracle EBS R12 WIP Component Issue&Return Process
oracleassemblytransactionscomponentsjobsreference 目录(?)[-] 定义BOM 定义Routing 定义WIP Discrete Job 发料 Mat ...
- Oracle EBS 隐藏帮助-诊断-检查
- Oracle EBS DBA常用SQL - 安装/补丁【Z】
Oracle EBS DBA常用SQL - 安装/补丁 检查应用补丁有没有安装:select bug_number,last_update_date from ad_bugs where bug_nu ...
- Oracle EBS中分类账和法人实体 的关系(有sql语句实例)
Oracle EBS中分类账和法人实体 的关系(有sql语句实例) 2012-12-06 16:05 2822人阅读 评论(0) 收藏 举报 分类: Oracle EBS(12) Oracle数据 ...
- oracle锁表查询,资源占用,连接会话,低效SQL等性能检查
查询oracle用户名,机器名,锁表对象 select l.session_id sid, s.serial#, l.locked_mode, l.oracle_username, l.os_user ...
- [转]oracle EBS 基础100问
from:http://www.cnblogs.com/xiaoL/p/3593691.html http://f.dataguru.cn/thread-51057-1-1.html 1001 OR ...
- Oracle EBS R12经验谈(二)
作者: jianping.ni 时间: 2009-2-13 12:52 标题: Oracle EBS R12经验谈(二) OAF页面:银行帐户开户人LOV值列表无值 在输入 应付超 ...
- Oracle EBS应用笔记整理 (转自IT++ flyingkite)
***************************************************** Author: Flyingkite Blog: http://space.itpub. ...
- Oracle EBS R12 (12.1.3) Installation Linux(64 bit)
Oracle EBS R12 (12.1.3) Installation Linux(64 bit) Contents Objective. 3 1 Download & Unzip. 3 D ...
随机推荐
- KVO的实现原理探寻
@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/c ...
- Nginx安装配置PHP(FastCGI)环境的教程
这篇是Nginx安装配置PHP(FastCGI)环境的教程.Nginx不支持对外部程序的直接调用或者解析,所有的外部程序(包括PHP)必须通过FastCGI接口来调用. 一.什么是 FastCGI F ...
- delphi 获取北京时间(使用XMLHTTP获取百度的时间,WebBrowser获取www.timedate.cn的时间)
方法一: uses ComObj, DateUtils; function GetInternetTime: string; var XmlHttp: OleVariant; datetxt: str ...
- Dispatcher.BeginInvoke()方法使用不当导致UI界面卡死的原因分析
原文:Dispatcher.BeginInvoke()方法使用不当导致UI界面卡死的原因分析 前段时间,公司同事开发了一个小工具,在工具执行过程中,UI界面一直处于卡死状态. 通过阅读代码发现,主要是 ...
- 并发(Concurrency)和并行(Parallelism)的区别
最近在读<real world haskell>里关于并行的一章时,看到作者首先对并发(Concurrency)和并行(Parallelism)的区别进行了定义和解释.以前我对这个问题也是 ...
- haproxy 关闭ssl 3.0 加密
global log 127.0.0.1 local3 maxconn 65535 chroot /usr/local/haproxy uid 500 gid 500 daemon ssl-defau ...
- cf467C George and Job
C. George and Job time limit per test 1 second memory limit per test 256 megabytes input standard in ...
- sql 数据库 庞大数据量 需要分表
17:04:05问下 在什么情况下 审核分区啊 ~..大熊..o○ 17:06:53这个要看应用~..大熊..o○ 17:07:37比如数据量很大,查询多是按照时间段查询,就可以用时间段来做分区~.. ...
- C++中基类的析构函数为什么要用virtual虚析构函数
知识背景 要弄明白这个问题,首先要了解下C++中的动态绑定. 关于动态绑定的讲解,请参阅: C++中的动态类型与动态绑定.虚函数.多态实现 正题 直接的讲,C++中基类采用virtual虚析构函数是 ...
- 云脉表格识别开放SDK接入
通过深度的引擎识别和文本处理技术给予表单提供了无与伦比的文档分析和数据的提取功能,云脉表单识别包含了先进的模板学习和文本.图像分析提取技术,通过模板元素定义表单,将整个南表单生命周期和生产数据以自动化 ...