DBA Data[Home] [Help]

APPS.ARP_PROCESS_CHARGEBACK dependencies on ARP_CT_PKG

Line 1631: arp_ct_pkg.insert_p(

1627:
1628: -- Call table handler, get trx_number and customer_trx_id back
1629: -- The main procedure will return trx_number and customer_trx_id
1630: -- back to calling Form or procedure.
1631: arp_ct_pkg.insert_p(
1632: -- IN
1633: p_trx_rec => l_ct_row
1634: -- OUT
1635: , p_trx_number => l_ct_row.trx_number

Line 1644: arp_standard.debug ( '-- table handler arp_ct_pkg.insert_p:');

1640: p_out_customer_trx_id := l_ct_row.customer_trx_id;
1641:
1642: IF PG_DEBUG in ('Y', 'C') THEN
1643: arp_standard.debug ( '-- Transaction number and internal id values returned from');
1644: arp_standard.debug ( '-- table handler arp_ct_pkg.insert_p:');
1645: arp_standard.debug ( 'trx_number = '||l_ct_row.trx_number);
1646: arp_standard.debug ( 'customer_trx_id = '|| to_char(l_ct_row.customer_trx_id));
1647: arp_standard.debug ( '');
1648: END IF;

Line 2385: arp_ct_pkg.set_to_dummy (

2381:
2382: -- ---------------------------------------------------
2383: -- First set all record parameters to dummy
2384: -- ---------------------------------------------------
2385: arp_ct_pkg.set_to_dummy (
2386: l_trx_rec);
2387:
2388: l_trx_rec.customer_trx_id := p_customer_trx_id;
2389: l_trx_rec.comments := p_comments;

Line 2412: arp_ct_pkg.update_p (

2408:
2409: -- ---------------------------------------------------
2410: -- Update
2411: -- ---------------------------------------------------
2412: arp_ct_pkg.update_p (
2413: l_trx_rec
2414: , p_customer_trx_id);
2415:
2416: IF PG_DEBUG in ('Y', 'C') THEN