各位高手,请教一个问题,就是在AP模块核销预付款的时候,正常操作,但是每次过入总帐的时候总是出现问题,即核销预付款的分配是空值,每次我都是运行以下脚本来解决:
Select * from ap_invoice_distributions_allwhere invoice_id=51181;
update ap_invoice_distributions_all set amount=-50000where invoice_id=51181 and description='xxxxxx';
select * from ap_accounting_events_all where cannot_account_flag = 'Y';
update ap_accounting_events_all set event_type_code = 'PREPAYMENT APPLICATION', cannot_account_flag = Null where accounting_event_id =72338;
虽然解决办法我知道,但是为什么经常会出现这个问题呢?我想请教各位出现问题的原因,请各位高手不吝赐教!