DBA Data[Home] [Help]

APPS.ARP_PROC_RCT_UTIL dependencies on ARP_XLA_EVENTS

Line 169: l_xla_ev_rec arp_xla_events.xla_events_type;

165: l_crh_rec ar_cash_receipt_history%ROWTYPE;
166: l_crh_id ar_cash_receipt_history.cash_receipt_history_id%TYPE;
167: l_dummy NUMBER;
168: --Bug#2750340
169: l_xla_ev_rec arp_xla_events.xla_events_type;
170:
171: BEGIN
172: arp_standard.debug('arp_process_rct_util.insert_crh_rec()+');
173:

Line 243: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);

239: l_xla_ev_rec.xla_to_doc_id := p_cr_rec.cash_receipt_id;
240: l_xla_ev_rec.xla_doc_table := 'CRH';
241: l_xla_ev_rec.xla_mode := 'O';
242: l_xla_ev_rec.xla_call := 'B';
243: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
244: END IF;
245:
246: arp_standard.debug('arp_process_rct_util.insert_crh_rec()-');
247:

Line 317: l_xla_ev_rec arp_xla_events.xla_events_type;

313:
314: l_ra_rec ar_receivable_applications%ROWTYPE;
315: l_ra_id ar_receivable_applications.receivable_application_id%TYPE;
316: --BUG#2750340
317: l_xla_ev_rec arp_xla_events.xla_events_type;
318:
319: BEGIN
320:
321: arp_standard.debug('arp_process_rct_util.insert_ra_rec_cash()+');

Line 400: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);

396: l_xla_ev_rec.xla_to_doc_id := l_ra_id;
397: l_xla_ev_rec.xla_doc_table := 'APP';
398: l_xla_ev_rec.xla_mode := 'O';
399: l_xla_ev_rec.xla_call := 'B';
400: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
401: END IF;
402: arp_standard.debug('arp_process_rct_util.insert_ra_rec_cash()-');
403:
404: END; -- insert_ra_rec_cash()

Line 451: l_xla_ev_rec arp_xla_events.xla_events_type;

447: l_dummy ar_distributions.line_id%TYPE;
448: l_cr_rec ar_cash_receipts%ROWTYPE;
449: l_crh_rec ar_cash_receipt_history%ROWTYPE;
450: --bug#2750340
451: l_xla_ev_rec arp_xla_events.xla_events_type;
452:
453: BEGIN
454: arp_standard.debug('arp_process_rct_util.insert_dist_rec()+');
455:

Line 526: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);

522: l_xla_ev_rec.xla_to_doc_id := l_crh_rec.cash_receipt_id;
523: l_xla_ev_rec.xla_doc_table := 'CRH';
524: l_xla_ev_rec.xla_mode := 'O';
525: l_xla_ev_rec.xla_call := 'B';
526: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
527: END IF;
528:
529: arp_standard.debug('arp_process_rct_util.insert_dist_rec()-');
530:

Line 692: l_xla_ev_rec arp_xla_events.xla_events_type;

688: l_misc_cash_key_value_list gl_ca_utility_pkg.r_key_value_arr; /* MRC */
689: l_crh_ccid ar_cash_receipt_history.account_code_combination_id%TYPE; /*Bug fix 4025652 */
690: l_type ar_receivables_trx.type%TYPE; /*4726219 */
691:
692: l_xla_ev_rec arp_xla_events.xla_events_type;
693:
694: CURSOR c_hist IS
695: SELECT cash_receipt_history_id
696: FROM ar_cash_receipt_history

Line 854: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);

850: l_xla_ev_rec.xla_to_doc_id := p_cash_receipt_id;
851: l_xla_ev_rec.xla_doc_table := 'MCD';
852: l_xla_ev_rec.xla_mode := 'O';
853: l_xla_ev_rec.xla_call := 'D';
854: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
855:
856: ELSIF (l_distribution_set_id is not null) THEN
857:
858: -- 941243: insert distributions records

Line 1549: l_xla_ev_rec arp_xla_events.xla_events_type;

1545: l_rounding_diff NUMBER;
1546: l_misc_cash_dist_id ar_misc_cash_distributions.misc_cash_distribution_id%TYPE; /* added for mrc changes */
1547: l_misc_cash_key_value_list gl_ca_utility_pkg.r_key_value_arr;
1548:
1549: l_xla_ev_rec arp_xla_events.xla_events_type;
1550:
1551: /* Bug fix 2843634
1552: Modified the cursor to take care of the situation where the receipt amount is zero */
1553:

Line 1687: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);

1683: l_xla_ev_rec.xla_to_doc_id := p_cash_receipt_id;
1684: l_xla_ev_rec.xla_doc_table := 'MCD';
1685: l_xla_ev_rec.xla_mode := 'O';
1686: l_xla_ev_rec.xla_call := 'D';
1687: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
1688:
1689:
1690: /*---------------------------------+
1691: | Calling central MRC library |