DBA Data[Home] [Help]

APPS.ARP_PROCESS_HEADER_POST_COMMIT dependencies on AR_BUS_EVENT_COVER

Line 151: l_prev_cust_old_state AR_BUS_EVENT_COVER.prev_cust_old_state_tab;

147: l_counter NUMBER := 0;
148: l_amt_credited NUMBER;
149: l_stat VARCHAR2(10);
150:
151: l_prev_cust_old_state AR_BUS_EVENT_COVER.prev_cust_old_state_tab;
152:
153: /*3463885*/
154: l_ps_rev_cash_id NUMBER;
155: l_ct_rev_cash_id NUMBER;

Line 497: AR_BUS_EVENT_COVER.Raise_Trx_Creation_Event

493: p_cash_receipt_id
494: );
495: --apandit
496: --Bug 2641517 Raise the Complete business event.
497: AR_BUS_EVENT_COVER.Raise_Trx_Creation_Event
498: (l_type,
499: p_customer_trx_id,
500: l_prev_cust_old_state);
501:

Line 592: AR_BUS_EVENT_COVER.p_insert_trx_sum_hist(l_trx_sum_hist_rec,

588: where customer_trx_id = p_customer_trx_id;
589:
590: END IF;
591:
592: AR_BUS_EVENT_COVER.p_insert_trx_sum_hist(l_trx_sum_hist_rec,
593: l_history_id,
594: l_type,
595: 'INCOMPLETE_TRX');
596: -- for credit memos... since we have only one payment schedule

Line 599: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event

595: 'INCOMPLETE_TRX');
596: -- for credit memos... since we have only one payment schedule
597: -- so raising the business event outside this loop is ok.
598: IF l_type <> 'CM' THEN
599: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event
600: (l_type,
601: p_customer_trx_id,
602: l_trx_sum_hist_rec.payment_schedule_id,
603: l_history_id,

Line 639: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event

635: l_applied_commitment_amt
636: );
637:
638: IF l_type = 'CM' THEN
639: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event
640: (l_type,
641: p_customer_trx_id,
642: l_trx_sum_hist_rec.payment_schedule_id,
643: l_history_id,

Line 846: AR_BUS_EVENT_COVER.p_insert_trx_sum_hist(l_trx_sum_hist_rec,

842:
843: --This flow will never be executed for the credit memo case
844: --as we do not change term on the credit memo.
845:
846: AR_BUS_EVENT_COVER.p_insert_trx_sum_hist(l_trx_sum_hist_rec,
847: l_history_id,
848: l_type,
849: 'INCOMPLETE_TRX');
850:

Line 852: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event

848: l_type,
849: 'INCOMPLETE_TRX');
850:
851: --Raise the Incompletion business event.
852: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event
853: (l_type,
854: p_customer_trx_id,
855: l_trx_sum_hist_rec.payment_schedule_id,
856: l_history_id,

Line 879: AR_BUS_EVENT_COVER.Raise_Trx_Creation_Event

875: --apandit
876: --Bug 2641517
877: IF nvl(l_term_changed_flag,0) = 'Y' THEN
878: --Raise the Complete business event.
879: AR_BUS_EVENT_COVER.Raise_Trx_Creation_Event
880: (l_type,
881: p_customer_trx_id,
882: l_prev_cust_old_state);
883: END IF;