码迷,mamicode.com
首页 > 数据库 > 详细

Oracle EBS-SQL (INV-9):检查搬运单分配异常.sql

时间:2014-06-12 16:09:07      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:code   cti   line   type   sql   oracle   

select h.request_number,
         l.line_number,
         msib.segment1 item_code,
         t.transaction_temp_id,
         t.transaction_quantity,
         l.quantity
from  mtl_material_transactions_temp t,
         mtl_txn_request_headers          h,
         mtl_txn_request_lines                l,
         mtl_system_items_b            msib
where t.move_order_header_id = h.header_id
   and t.inventory_item_id = msib.inventory_item_id
   and t.organization_id = msib.organization_id
   and t.move_order_line_id =l.line_id
   and t.organization_id = l.organization_id
   and t.move_order_line_id is not null
   and t.transaction_type_id=35
   and t.transaction_quantity<0
order by request_number,

        line_number;

Oracle EBS-SQL (INV-9):检查搬运单分配异常.sql,布布扣,bubuko.com

Oracle EBS-SQL (INV-9):检查搬运单分配异常.sql

标签:code   cti   line   type   sql   oracle   

原文地址:http://www.cnblogs.com/st-sun/p/3782130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!