본문 바로가기

Oracle EBS

FA Mass Addition이 APP-OFA-48678: Date must be in a future asset period 처리방법

반응형

 

Future Addition Transaction Error APP-OFA-48678 in Mass Additions (Doc ID 261215.1)

문서 참조

 

Cause

When mass additions create was run, it was run before the period was opened so it was a future line.  Depreciation was run while the line was in the ON-HOLD or NEW queue and thus Process Pending Transactions didn't pick it up.  Now the form will not allow the queue to be set to POST due to validation that prevents it.

Solution

The transaction type can be modifed via SQL:

update FA_MASS_ADDITIONS
set transaction_type_code = NULL,
transaction_date = NULL
where mass_addition_id = &mass_addition_id
and TRANSACTION_TYPE_CODE = 'FUTURE ADD'
and POSTING_STATUS <> 'POSTED';

  To prevent this issue in the future ensure the queue is update from NEW to POST before Depreciation is ran, then the Process Pending Transactions will post the item

반응형

'Oracle EBS' 카테고리의 다른 글

Value Set 데이터 조회 Query  (0) 2023.06.16
FND_ 관련 테이블 목록  (0) 2023.06.16
AR Table 관련  (0) 2023.06.16
AR Table 관련  (0) 2023.06.16
AP Invoice R11버전  (1) 2023.06.16