DBA Data[Home] [Help]

APPS.ARP_PROC_RCT_UTIL dependencies on ARP_XLA_EVENTS

Line 168: l_xla_ev_rec arp_xla_events.xla_events_type;

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

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

231: l_xla_ev_rec.xla_to_doc_id := p_cr_rec.cash_receipt_id;
232: l_xla_ev_rec.xla_doc_table := 'CRH';
233: l_xla_ev_rec.xla_mode := 'O';
234: l_xla_ev_rec.xla_call := 'B';
235: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
236:
237: arp_standard.debug('arp_process_rct_util.insert_crh_rec()-');
238:
239: EXCEPTION

Line 308: l_xla_ev_rec arp_xla_events.xla_events_type;

304:
305: l_ra_rec ar_receivable_applications%ROWTYPE;
306: l_ra_id ar_receivable_applications.receivable_application_id%TYPE;
307: --BUG#2750340
308: l_xla_ev_rec arp_xla_events.xla_events_type;
309:
310: BEGIN
311:
312: arp_standard.debug('arp_process_rct_util.insert_ra_rec_cash()+');

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

385: l_xla_ev_rec.xla_to_doc_id := l_ra_id;
386: l_xla_ev_rec.xla_doc_table := 'APP';
387: l_xla_ev_rec.xla_mode := 'O';
388: l_xla_ev_rec.xla_call := 'B';
389: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
390:
391: arp_standard.debug('arp_process_rct_util.insert_ra_rec_cash()-');
392:
393: END; -- insert_ra_rec_cash()

Line 439: l_xla_ev_rec arp_xla_events.xla_events_type;

435: l_dummy ar_distributions.line_id%TYPE;
436: l_cr_rec ar_cash_receipts%ROWTYPE;
437: l_crh_rec ar_cash_receipt_history%ROWTYPE;
438: --bug#2750340
439: l_xla_ev_rec arp_xla_events.xla_events_type;
440:
441: BEGIN
442: arp_standard.debug('arp_process_rct_util.insert_dist_rec()+');
443:

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

508: l_xla_ev_rec.xla_to_doc_id := l_crh_rec.cash_receipt_id;
509: l_xla_ev_rec.xla_doc_table := 'CRH';
510: l_xla_ev_rec.xla_mode := 'O';
511: l_xla_ev_rec.xla_call := 'B';
512: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
513:
514: arp_standard.debug('arp_process_rct_util.insert_dist_rec()-');
515:
516: END; -- insert_dist_rec()

Line 677: l_xla_ev_rec arp_xla_events.xla_events_type;

673: l_misc_cash_key_value_list gl_ca_utility_pkg.r_key_value_arr; /* MRC */
674: l_crh_ccid ar_cash_receipt_history.account_code_combination_id%TYPE; /*Bug fix 4025652 */
675: l_type ar_receivables_trx.type%TYPE; /*4726219 */
676:
677: l_xla_ev_rec arp_xla_events.xla_events_type;
678:
679: CURSOR c_hist IS
680: SELECT cash_receipt_history_id
681: FROM ar_cash_receipt_history

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

835: l_xla_ev_rec.xla_to_doc_id := p_cash_receipt_id;
836: l_xla_ev_rec.xla_doc_table := 'MCD';
837: l_xla_ev_rec.xla_mode := 'O';
838: l_xla_ev_rec.xla_call := 'D';
839: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
840:
841: ELSIF (l_distribution_set_id is not null) THEN
842:
843: -- 941243: insert distributions records

Line 1534: l_xla_ev_rec arp_xla_events.xla_events_type;

1530: l_rounding_diff NUMBER;
1531: l_misc_cash_dist_id ar_misc_cash_distributions.misc_cash_distribution_id%TYPE; /* added for mrc changes */
1532: l_misc_cash_key_value_list gl_ca_utility_pkg.r_key_value_arr;
1533:
1534: l_xla_ev_rec arp_xla_events.xla_events_type;
1535:
1536: /* Bug fix 2843634
1537: Modified the cursor to take care of the situation where the receipt amount is zero */
1538:

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

1668: l_xla_ev_rec.xla_to_doc_id := p_cash_receipt_id;
1669: l_xla_ev_rec.xla_doc_table := 'MCD';
1670: l_xla_ev_rec.xla_mode := 'O';
1671: l_xla_ev_rec.xla_call := 'D';
1672: ARP_XLA_EVENTS.create_events(p_xla_ev_rec => l_xla_ev_rec);
1673:
1674:
1675: /*---------------------------------+
1676: | Calling central MRC library |