Oracle EBS-SQL (PO-8):检查有供货比例无采购员.sql

select distinct

msr.sourcing_rule_name    
       名称 ,

msi.description                         
说明 ,

msi.item_type                          
类型 ,

msi.inventory_item_status_code 状态 ,

msr.planning_active           
 计划生效 ,

msro.effective_date            
有效日期 ,

msro.disable_date               无效日期
,

msro.attribute1                   
比例月份

/*,decode(msso.source_type,3,‘采购来源‘,2,‘制造地点‘,‘传送至‘) 来源类型 ,

msso.vendor_id                      
供应商 ,

msso.vendor_site_id                   地点
,

msso.allocation_percent             
比例 ,

msso.rank                               优先级   
*/

from mrp.MRP_SOURCING_RULES  msr,

mrp.mrp_sr_receipt_org      msro,

mrp.mrp_sr_source_org     
msso,

inv.mtl_system_items_b     
msi

where msi.organization_id  = X

and msi.organization_id  = msr.organization_id

and msi.segment1 = msr.sourcing_rule_name

and msr.organization_id = msro.receipt_organization_id

and msr.sourcing_rule_id = msro.sourcing_rule_id

and msro.sr_receipt_id = msso.sr_receipt_id

--and msr.planning_active=2   --供货比例不为100%

and msso.source_type=3    
--采购来源

--and msi.item_type in (‘SA‘,‘OP‘)

and msi.buyer_id is null  --无采购员的

and msso.allocation_percent >0   --排除比例为0的选项

and msro.disable_date is null

order by msr.sourcing_rule_name

时间: 2024-11-10 07:15:54

Oracle EBS-SQL (PO-8):检查有供货比例无采购员.sql的相关文章

Oracle EBS:追踪PO全过程

1.创建PO PO_HEADERS_ALL select po_header_id from po_headers_all where segment1 =; select * from po_headers_all where po_header_id =; po_lines_all select * from po_lines_all where po_header_id =; po_line_locations_all select * from po_line_locations_all

Oracle EBS-SQL (PO-17):检查供货比例不为100%.sql

select           * from           apps.MRP_SOURCING_RULES msrwhere           organization_id=X.    and msr.planning_active=2 /*and msr.planning_active=1*/ Oracle EBS-SQL (PO-17):检查供货比例不为100%.sql,布布扣,bubuko.com

Oracle EBS-SQL (PO-1):检查供货比例异常.sql

select distinct msr.sourcing_rule_name                     名称 , msi.description                                   说明 , msi.item_type                                     类型 , msi.inventory_item_status_code           状态 , msr.planning_active           

Oracle EBS-SQL (PO-16):检查采购订单完成情况统计.sql

select         e.FULL_NAME                                                     采购员,         sum(plla.quantity-plla.QUANTITY_CANCELLED)  订购数量,         sum(plla.Quantity_Received)                           完成数量 ,         round(SUM(plla.Quantity_Receive

Oracle EBS-SQL (INV-2):检查帐户别名发放记录.sql

SELECT FU.description                 操作者,         ITM.SEGMENT1               物料编码,         ITM.DESCRIPTION           物料描述,         TXN.TRANSACTION_DATE 交易日期,         TXN.PRIMARY_QUANTITY 交易数量,         TXN.SUBINVENTORY_CODE   仓库,         MUM.UNIT_OF_

Oracle EBS-SQL (BOM-15):检查多层BOM(含common BOM).sql

select       distinct b.lvl                                                      层次, b.OPERATION_SEQ_NUM                        工序, msi1.segment1                                 父件编码, msi1.description                                父件描述, msi1.item_ty

[转]oracle EBS 基础100问

from:http://www.cnblogs.com/xiaoL/p/3593691.html  http://f.dataguru.cn/thread-51057-1-1.html 1001 ORACLE EBS学习的其他资源有哪四个? 1002 ORACLE OPEN WORLD大会是不是一个市场营销活动? 1003 Oracle 大学有哪五种课程? 1004 多个责任分配给一个人,是多对一关系,还是一对多关系? 1005 一个责任分配给多个人,是什么样的关系? 1006 双+号和双-号,

Oracle EBS 中直发订单Drop Ship流程的系统操作记录

Oracle EBS 中直发订单Drop Ship流程的系统操作记录 应用场景: A公司向客户B销售产品,但是自己不生产该产品,而是向供应商C来采购,并且通常是要供应商C直接把货发到B客户处,属于贸易型企业经常用到的业务流程,有些集团公司下的子公司销售业务也用这种方式. 在实际业务中,并非所有的销售都是企业内部发出的,为了节约成本.提高周转效率.甚至应急销售,企业往往将外部企业也作为自己销售供货的来源之一,通过采购后直接发货的方式,将其他企业的货物直接销往自己的客户.这种销售业务模式,系统中称之

Oracle EBS 采购 接收入库 接口开发

http://blog.itpub.net/25164132/viewspace-746657/ 接收入库是项目中会经常碰到的开发,这类开发一般来说比较简单,但是接收入库在Oracle中其实涉及到很多模块,其中层次较多,也可以做得比较复杂.本文将尽可能深入细致地讨论接收入库的流程,种类,数据来源,数据的流动路径,以及各个数据点之间的对应关系.最后将给出一个较为全面的接收入库的样例代码.接收入库的种类接收入库可以按照数据来源分为2种:1.         对于po订单以及发放的接收入库:2.