前提是GL未过帐,可以还原AR未过帐之前的状态
[强烈建议不要随便使用]
1>首先检查当期传入GL的AR事务,找到BATCH NAME, name 值类似于'AR xxxxx Receivables%'.{其中xxxxx就是AR中的posting_control_id的值,记下},删除整个batch;
2>如果gl_interface中有AR未过日记帐的,先执行import journal,然后执行第一步删除日记帐;
3>更新AR中相关表中的posting_control_id(第一步已经记下来了,把这个值更新为-3即可)
select * from table_name where posting_control_id=xxxxx;
update table_name set posting_control_id=-3 where posting_control_id=xxxxx;
相关的表有:ra_cust_trx_line_gl_dist_all,
ar_cash_receipt_history_all,
ar_misc_cash_distributions_all,
ar_receivable_applications_all,
ar_adjustments_all,
ar_transaction_history_all
请大家测试,然后补充......
阅读(1204) | 评论(0) | 转发(0) |