zoukankan      html  css  js  c++  java
  • Oracle EBS-SQL (INV-9):检查搬运单分配异常.sql

    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;

  • 相关阅读:
    LeetCode347 前k个高频元素
    剑指42 连续字数租的最大和
    hdu1540
    hdu4553 两棵线段树
    cdq分治
    负环
    最短路
    差分约束系统
    hdu3308
    hdu5862 树状数组+扫描线+离散化
  • 原文地址:https://www.cnblogs.com/st-sun/p/3782130.html
Copyright © 2011-2022 走看看