APP-OFA-48400: Error: function faxbmt returned failure 的處理

longwansheng發表於2007-03-02
At beginning of Calculate Gain/Loss program
Book: FA_GUFY
Request ID: 13959178
APP-FND-01388: Cannot read value for profile option FA_NUM_PARALLEL_REQUESTS in routine &ROUTINE.
FND_CONCURRENT_GET_REQUEST_STATUS
Error: function faxcds returned failure (called from faxcps)
Error: function faxcps returned failure (called from faxcbs)
Error: function faxcbs returned failure (called from faxbmt)
Error: function faxbmt returned failure (called from FARET)
APP-OFA-48400: Error: function faxbmt returned failure (called from FARET)

Number of successes: 0
Number of failures: 0
Module Calculate Gain/Loss ended with error[@more@]

查metalink.oracle.com

得知是book_type_code中資料有問題(

Doc ID: Note:261058.1
)

select * from fa_book_controls
where book_type_code='FA_GUFY'

發現DEPRN_REQUEST_ID 為null

指定一個id以'騙'系統

Update fa_book_controls
set DEPRN_REQUEST_ID =13962658
where book_type_code = 'FA_GUFY';

再run折舊,就正常了.

另還有一種情況,就是.deprn_status 不為'C' 的,也會造成類似的情況.

修正如下.

Update fa_book_controls
set
deprn_status='C'

where book_type_code = 'FA_GUFY';

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/92289/viewspace-901238/,如需轉載,請註明出處,否則將追究法律責任。

相關文章