DBA Data[Home] [Help]

APPS.FA_UNPLANNED_PVT dependencies on FA_XLA_EVENTS_PVT

Line 240: if not fa_xla_events_pvt.create_transaction_event

236: -- Bug 15877517 : Reinitialize who_info as well
237: px_trans_rec.who_info.creation_date := sysdate;
238: px_trans_rec.who_info.last_update_date := sysdate;
239:
240: if not fa_xla_events_pvt.create_transaction_event
241: (p_asset_hdr_rec => p_asset_hdr_rec,
242: p_asset_type_rec=> p_asset_type_rec,
243: px_trans_rec => px_trans_rec,
244: p_event_status => NULL,

Line 253: l_secondary_sob_id := FA_XLA_EVENTS_PVT.get_secondary_sob_id(p_asset_hdr_rec.book_type_code);

249: /*=================================================================
250: Secondary Changes Start
251: If primary and secondary sob_id is different then we need to
252: create/update/delete event for secondary ledger*/
253: l_secondary_sob_id := FA_XLA_EVENTS_PVT.get_secondary_sob_id(p_asset_hdr_rec.book_type_code);
254:
255: if(l_secondary_sob_id is not null) then
256: l_secondary_asset_hdr_rec := p_asset_hdr_rec;
257: l_secondary_trans_rec := px_trans_rec;

Line 261: if not fa_xla_events_pvt.create_transaction_event

257: l_secondary_trans_rec := px_trans_rec;
258:
259: l_secondary_asset_hdr_rec.set_of_books_id := l_secondary_sob_id;
260:
261: if not fa_xla_events_pvt.create_transaction_event
262: (p_asset_hdr_rec => l_secondary_asset_hdr_rec,
263: p_asset_type_rec=> p_asset_type_rec,
264: px_trans_rec => l_secondary_trans_rec,
265: p_event_status => NULL,

Line 462: if not fa_xla_events_pvt.update_transaction_event

458: then
459: l_asset_fin_rec.adjustment_required_status := 'GADJ';
460:
461: if (p_mrc_sob_type_code <> 'R') then
462: if not fa_xla_events_pvt.update_transaction_event
463: (p_ledger_id => p_asset_hdr_rec.set_of_books_id,
464: p_transaction_header_id => px_trans_rec.transaction_header_id,
465: p_book_type_code => p_asset_hdr_rec.book_type_code,
466: p_event_type_code => 'UNPLANNED_DEPRECIATION',

Line 468: p_event_status_code => fa_xla_events_pvt.C_EVENT_INCOMPLETE,

464: p_transaction_header_id => px_trans_rec.transaction_header_id,
465: p_book_type_code => p_asset_hdr_rec.book_type_code,
466: p_event_type_code => 'UNPLANNED_DEPRECIATION',
467: p_event_date => px_trans_rec.transaction_date_entered, --?
468: p_event_status_code => fa_xla_events_pvt.C_EVENT_INCOMPLETE,
469: p_calling_fn => l_calling_fn,
470: p_log_level_rec => p_log_level_rec) then
471: raise unp_err;
472: end if;