DBA Data[Home] [Help]

APPS.FA_REVALUATION_PVT dependencies on FA_XLA_EVENTS_PVT

Line 205: if not fa_xla_events_pvt.create_transaction_event

201: -- assign an event for the transaction
202: -- at this point key info asset/book/trx info is known from above code
203: -- *** but trx_date_entered may not be correct! - revisit ***
204:
205: if not fa_xla_events_pvt.create_transaction_event
206: (p_asset_hdr_rec => px_asset_hdr_rec,
207: p_asset_type_rec=> p_asset_type_rec,
208: px_trans_rec => px_trans_rec,
209: p_event_status => NULL,

Line 219: l_secondary_sob_id := FA_XLA_EVENTS_PVT.get_secondary_sob_id(px_asset_hdr_rec.book_type_code);

215: /*=================================================================
216: Secondary Changes Start
217: If primary and secondary sob_id is different then we need to
218: create/update/delete event for secondary ledger*/
219: l_secondary_sob_id := FA_XLA_EVENTS_PVT.get_secondary_sob_id(px_asset_hdr_rec.book_type_code);
220: if(l_secondary_sob_id is not null) then
221: l_secondary_asset_hdr_rec := px_asset_hdr_rec;
222: l_secondary_trans_rec := px_trans_rec;
223:

Line 226: if not fa_xla_events_pvt.create_transaction_event

222: l_secondary_trans_rec := px_trans_rec;
223:
224: l_secondary_asset_hdr_rec.set_of_books_id := l_secondary_sob_id;
225:
226: if not fa_xla_events_pvt.create_transaction_event
227: (p_asset_hdr_rec => l_secondary_asset_hdr_rec,
228: p_asset_type_rec=> p_asset_type_rec,
229: px_trans_rec => l_secondary_trans_rec,
230: p_event_status => NULL,

Line 3814: if not fa_xla_events_pvt.delete_transaction_event

3810: fa_debug_pkg.add(l_calling_fn,'Deleting unprocessed Reval event: '
3811: , p_event_id,p_log_level_rec => p_log_level_rec);
3812: end if;
3813:
3814: if not fa_xla_events_pvt.delete_transaction_event
3815: (p_ledger_id => p_asset_hdr_rec.set_of_books_id,
3816: p_transaction_header_id => p_thid,
3817: p_book_type_code => p_asset_hdr_rec.book_type_code,
3818: p_calling_fn => l_calling_fn

Line 3905: -- Populating for calling FA_XLA_EVENTS_PVT.create_transaction_event

3901: INTO l_trans_rec.transaction_header_id
3902: FROM DUAL;
3903:
3904: --
3905: -- Populating for calling FA_XLA_EVENTS_PVT.create_transaction_event
3906: --
3907: l_trans_rec.transaction_subtype := 'STANDARD';
3908: l_trans_rec.transaction_type_code := 'REVALUATION';
3909: l_trans_rec.transaction_key := 'RV';

Line 3931: if not FA_XLA_EVENTS_PVT.create_transaction_event(

3927: fa_debug_pkg.add(l_calling_fn,'Creating rollback reval transaction event'
3928: , p_thid,p_log_level_rec => p_log_level_rec);
3929: end if;
3930:
3931: if not FA_XLA_EVENTS_PVT.create_transaction_event(
3932: p_asset_hdr_rec => p_asset_hdr_rec,
3933: p_asset_type_rec => l_asset_type_rec,
3934: px_trans_rec => l_trans_rec,
3935: p_event_status => NULL,

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

3946: Secondary Changes Start
3947: If primary and secondary sob_id is different then we need to
3948: create/update/delete event for secondary ledger*/
3949:
3950: l_secondary_sob_id := FA_XLA_EVENTS_PVT.get_secondary_sob_id(p_asset_hdr_rec.book_type_code);
3951: if (l_secondary_sob_id is not null) then
3952: l_secondary_asset_hdr_rec := p_asset_hdr_rec;
3953: l_secondary_trans_rec := l_trans_rec;
3954:

Line 3957: if not fa_xla_events_pvt.create_transaction_event

3953: l_secondary_trans_rec := l_trans_rec;
3954:
3955: l_secondary_asset_hdr_rec.set_of_books_id := l_secondary_sob_id;
3956:
3957: if not fa_xla_events_pvt.create_transaction_event
3958: (p_asset_hdr_rec => l_secondary_asset_hdr_rec,
3959: p_asset_type_rec => l_asset_type_rec,
3960: px_trans_rec => l_secondary_trans_rec,
3961: p_event_status => NULL,