DBA Data[Home] [Help]

APPS.ARP_PROCESS_CHARGEBACK dependencies on ARP_CT_PKG

Line 1569: arp_ct_pkg.insert_p(

1565:
1566: -- Call table handler, get trx_number and customer_trx_id back
1567: -- The main procedure will return trx_number and customer_trx_id
1568: -- back to calling Form or procedure.
1569: arp_ct_pkg.insert_p(
1570: -- IN
1571: p_trx_rec => l_ct_row
1572: -- OUT
1573: , p_trx_number => l_ct_row.trx_number

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

1578: p_out_customer_trx_id := l_ct_row.customer_trx_id;
1579:
1580: IF PG_DEBUG in ('Y', 'C') THEN
1581: arp_standard.debug ( '-- Transaction number and internal id values returned from');
1582: arp_standard.debug ( '-- table handler arp_ct_pkg.insert_p:');
1583: arp_standard.debug ( 'trx_number = '||l_ct_row.trx_number);
1584: arp_standard.debug ( 'customer_trx_id = '|| to_char(l_ct_row.customer_trx_id));
1585: arp_standard.debug ( '');
1586: END IF;

Line 2233: arp_ct_pkg.set_to_dummy (

2229:
2230: -- ---------------------------------------------------
2231: -- First set all record parameters to dummy
2232: -- ---------------------------------------------------
2233: arp_ct_pkg.set_to_dummy (
2234: l_trx_rec);
2235:
2236: l_trx_rec.customer_trx_id := p_customer_trx_id;
2237: l_trx_rec.comments := p_comments;

Line 2260: arp_ct_pkg.update_p (

2256:
2257: -- ---------------------------------------------------
2258: -- Update
2259: -- ---------------------------------------------------
2260: arp_ct_pkg.update_p (
2261: l_trx_rec
2262: , p_customer_trx_id);
2263:
2264: IF PG_DEBUG in ('Y', 'C') THEN