DBA Data[Home] [Help]

APPS.FA_PROCESS_GROUPS_PKG dependencies on XLA_EVENTS

Line 563: from xla_events

559: end if;
560:
561: select event_type_code
562: into l_event_type_code
563: from xla_events
564: where application_id = 140
565: and event_id = l_trans_rec.event_id;
566:
567: --Added one more condition lm_trans_rec.event_id is not null in following

Line 573: if not fa_xla_events_pvt.update_inter_transaction_event

569: -- bug 5475029: modified the following if condition
570: --if (l_trans_rec.trx_reference_id is not null and lm_trans_rec.event_id is not null) then
571: if (nvl(l_trx_ref_type,'STANDARD TRX') = 'INVOICE TRANSFER') then
572:
573: if not fa_xla_events_pvt.update_inter_transaction_event
574: (p_ledger_id => l_asset_hdr_rec.set_of_books_id,
575: p_trx_reference_id => lm_trans_rec.trx_reference_id,
576: p_book_type_code => p_book,
577: p_event_type_code => l_event_type_code,

Line 579: p_event_status_code => XLA_EVENTS_PUB_PKG.C_EVENT_UNPROCESSED,

575: p_trx_reference_id => lm_trans_rec.trx_reference_id,
576: p_book_type_code => p_book,
577: p_event_type_code => l_event_type_code,
578: p_event_date => l_trans_rec.transaction_date_entered,
579: p_event_status_code => XLA_EVENTS_PUB_PKG.C_EVENT_UNPROCESSED,
580: p_calling_fn => l_calling_fn,
581: p_log_level_rec => p_log_level_rec) then
582: raise group_adj_err;
583: end if;

Line 595: if not fa_xla_events_pvt.update_transaction_event

591: -- direct group transaction
592: l_thid := l_trans_rec.transaction_header_id;
593: end if;
594:
595: if not fa_xla_events_pvt.update_transaction_event
596: (p_ledger_id => l_asset_hdr_rec.set_of_books_id,
597: p_transaction_header_id => l_thid,
598: p_book_type_code => p_book,
599: p_event_type_code => l_event_type_code,

Line 601: p_event_status_code => XLA_EVENTS_PUB_PKG.C_EVENT_UNPROCESSED,

597: p_transaction_header_id => l_thid,
598: p_book_type_code => p_book,
599: p_event_type_code => l_event_type_code,
600: p_event_date => l_trans_rec.transaction_date_entered,
601: p_event_status_code => XLA_EVENTS_PUB_PKG.C_EVENT_UNPROCESSED,
602: p_calling_fn => l_calling_fn,
603: p_log_level_rec => p_log_level_rec) then
604: raise group_adj_err;
605: end if;