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 495: AR_BUS_EVENT_COVER.Raise_Trx_Creation_Event

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

Line 590: AR_BUS_EVENT_COVER.p_insert_trx_sum_hist(l_trx_sum_hist_rec,

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

Line 597: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event

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

Line 637: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event

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

Line 844: AR_BUS_EVENT_COVER.p_insert_trx_sum_hist(l_trx_sum_hist_rec,

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

Line 850: AR_BUS_EVENT_COVER.Raise_Trx_Incomplete_Event

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

Line 877: AR_BUS_EVENT_COVER.Raise_Trx_Creation_Event

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