|
|

楼主 |
发表于 2009/1/6 15:13:16
|
显示全部楼层
这个问题这两天我正好大批量遇到,将po_interface_errors报错抓出来。
select d.po_line_id,c.segment1,a.org_id, a.transaction_type,e.segment1,e.description,b.error_message,a.quantity,a.subinventory,a.destination_type_code,a.transaction_type
from po_interface_errors b,
rcv_transactions_interface a,
po_headers_all c,
po_lines_all d,
mtl_system_items_b e
where b.interface_line_id = a.interface_transaction_id
and a.po_header_id = c.po_header_id
and a.po_line_id = d.po_line_id
and d.item_id = e.inventory_item_id
找到所有报错的行,显示的第一个字段po_line_id。这是采购订单的行号。
然后运行:
select * from po.po_lines_all t where t.po_line_id =‘’
这样可以查出此报错的的PO后台表,直接在物料描述字段UPDATE成最新物料描述。
然后切换到采购的超级用户职责,提交 接收事务处理处理器 请求
此问题完全解决! |
|