|
不知这么久问题解决没有,我前几天才有人向我推荐该网站。今天看到你的这个问题深表同情。先将错误定义的成本改好,把MATERAIL overhead 成本定义删除。
然后剩下来就是数据恢复。实际上恢复就是将以前产生的错误信息、分配等删除,重新提交一次成本管理器。
大致应该是:
delete from mtl_transaction_accounts where transaction_id =xx
delete from mtl_cst_actual_cost_details where transaction_id =xx
update mtl_material_transactions set costed_flag = 'N', request_id = null, transaction_group_id = null ,error_code=null,error_explanation=nill
where transaction_id=xx
我以前看上线时,事务处理经常出现各种毛病,一般都自己恢复。现在好久没做了,有些生疏,建议你最好在测试版中模拟一个类似错误,进行上述修整,应该没有什么大问题。祝你好运! |
|